Skip to content

Commit 57da765

Browse files
authored
fix (apparent) typo in the null-aware-elements example (#4107)
1 parent 8e35ba9 commit 57da765

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

accepted/future-releases/0323-null-aware-elements/feature-specification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ final tag = Tag()
252252
'comment': comms!
253253
.asMap()
254254
.map((key, value) => MapEntry<String, Comment>(value.key, value)),
255-
'track': Song.numberInAlbum?.toString(),
256-
'genre': Song.genre,
255+
'track': ?Song.numberInAlbum?.toString(),
256+
'genre': ?Song.genre,
257257
if (Song.albumArt != null) 'picture': {pic.key: pic},
258258
}
259259
..type = 'ID3'

0 commit comments

Comments
 (0)