platform/packages/inflection3/lib/src/irregular_plural_verbs.dart

10 lines
220 B
Dart
Raw Normal View History

2021-05-02 08:39:25 +00:00
//library inflection2.irregular_plural_verbs;
/// A collection of verbs with irregular plurals.
final Map<String, String> irregularPluralVerbs = const {
2021-05-17 15:10:07 +00:00
'is': 'are',
'am': 'are',
'was': 'were',
'has': 'have'
2021-05-02 08:39:25 +00:00
};