Fix typo in CHANGELOG.

Change-Id: Ifb385ef58e275027374a63e41afc2bb895e3d736
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/428563
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Michael Thomsen <mit@google.com>
Commit-Queue: Michael Thomsen <mit@google.com>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f45546f..6c35a44 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -52,11 +52,11 @@
 
 [null-aware elements]: https://github.com/dart-lang/language/issues/323
 
-The null-aware elements make it easier to omit a value from a collection literal
-if it's `null`. The syntax works in list literals, set literals, and map
-literals. For map literals, both null-aware keys and values are supported. Here
-is an example a list literal written in both styles, without the null-aware
-elements language feature and with it:
+Null-aware elements make it easier to omit a value from a collection literal if
+it's `null`. The syntax works in list literals, set literals, and map literals.
+For map literals, both null-aware keys and values are supported. Here is an
+example a list literal written in both styles, without the null-aware elements
+language feature and with it:
 
 ```dart
 String? lunch = isTuesday ? 'tacos!' : null;