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 {
"is": "are",
"am": "are",
"was": "were",
"has": "have"
};