From 57da765cd999f9088d97d368bd647eab6a507a2e Mon Sep 17 00:00:00 2001 From: "Mateus Felipe C. C. Pinto" Date: Fri, 4 Oct 2024 13:40:05 -0300 Subject: [PATCH] fix (apparent) typo in the null-aware-elements example (#4107) --- .../0323-null-aware-elements/feature-specification.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accepted/future-releases/0323-null-aware-elements/feature-specification.md b/accepted/future-releases/0323-null-aware-elements/feature-specification.md index 31642c744..77bbff22e 100644 --- a/accepted/future-releases/0323-null-aware-elements/feature-specification.md +++ b/accepted/future-releases/0323-null-aware-elements/feature-specification.md @@ -252,8 +252,8 @@ final tag = Tag() 'comment': comms! .asMap() .map((key, value) => MapEntry(value.key, value)), - 'track': Song.numberInAlbum?.toString(), - 'genre': Song.genre, + 'track': ?Song.numberInAlbum?.toString(), + 'genre': ?Song.genre, if (Song.albumArt != null) 'picture': {pic.key: pic}, } ..type = 'ID3'