Remove Oxford comma (#2245)

This commit is contained in:
Imran Remtulla
2025-04-18 16:08:06 -04:00
parent 6af1748a78
commit 3175597a2a
6 changed files with 6 additions and 6 deletions

View File

@ -154,7 +154,7 @@ String list2FriendlyString(List<String> list) {
(e.key == list.length - 1
? ''
: e.key == list.length - 2
? ', and '
? ' and '
: ', '))
.join('');
}