Use the correct syntax for null-aware spread in CHANGELOG.

Fix #36705.

Change-Id: Ifa2061c159199140fcc58a2718ff54e5f67cd48b
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/100265
Reviewed-by: Vijay Menon <vsm@google.com>
Reviewed-by: Leaf Petersen <leafp@google.com>
This commit is contained in:
Bob Nystrom 2019-04-23 19:22:44 +00:00
parent 04e1b0d976
commit 34f0bed189

View file

@ -42,7 +42,7 @@ CupertinoPageScaffold(
```
If you know the expression might evaluate to null and you want to treat that as
equivalent to zero elements, you can use the null-aware spread `?...`.
equivalent to zero elements, you can use the null-aware spread `...?`.
#### Collection if