Skip to content

Commit de41af3

Browse files
committed
shorten sentence
1 parent ed8560c commit de41af3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/content/effective-dart/usage.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -340,8 +340,9 @@ Declaring members [private][] and [final][], as we generally recommend, is often
340340
enough to bypass these limitations. But, that's not always an option.
341341

342342
One pattern to work around type promotion limitations is to use a
343-
[null-check pattern][] to simultaneously confirm the member's value is not null,
344-
and bind that value to a new non-nullable variable of the same base type.
343+
[null-check pattern][]. This simultaneously confirms the member's value
344+
is not null, and binds that value to a new non-nullable variable of
345+
the same base type.
345346

346347
<?code-excerpt "usage_good.dart (null-check-promo)"?>
347348
```dart tag=good

0 commit comments

Comments
 (0)