10 lines
220 B
Dart
10 lines
220 B
Dart
|
//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"
|
||
|
};
|