diff --git a/CHANGELOG.md b/CHANGELOG.md index b5f19aa5391..5495d3df72f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,7 @@ expressions under the appropriate conditions: ```dart // Example: these are now valid constants. -const i = 3; +const Object i = 3; const list = [i as int]; const set = {if (list is List) ...list}; const map = {if (i is int) i : "int"};