Skip to content

Commit

Permalink
Merge pull request #1614 from Julio860JVL/patch-1
Browse files Browse the repository at this point in the history
Quick typo fix in: basics-null-safety.md
  • Loading branch information
codediodeio authored Aug 4, 2023
2 parents 0f1f501 + 113b640 commit f71d613
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/courses/dart/basics-null-safety.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ Another possible situation is that you want to assign a *nullable value* TO a *n
```dart
String? answer;
String result = answer; // error;
String result = answer; // error
String result = answer! // works;
String result = answer!; // works
```

0 comments on commit f71d613

Please sign in to comment.