Skip to content

Commit

Permalink
Fix zero word case
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 22, 2024
1 parent 4e166d1 commit 0b00511
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import 'package:messages/messages.dart';
import 'icu_message_parser.dart';
import 'message_parser.dart';

Map<String, int> numbers = {'one': 1, 'two': 2};
Map<String, int> numbers = {'zero': 0, 'one': 1, 'two': 2};

class PluralParser {
MapEntry<T, Message>? getPluralCaseFrom<T>(
Expand Down

0 comments on commit 0b00511

Please sign in to comment.