21 lines
307 B
Dart
21 lines
307 B
Dart
//library inflection2.verbs_ending_with_ed;
|
|
|
|
/// A collection of verbs ending with -ed.
|
|
final List<String> verbsEndingWithEd = const [
|
|
'bed',
|
|
'bleed',
|
|
'breed',
|
|
'embed',
|
|
'exceed',
|
|
'feed',
|
|
'heed',
|
|
'need',
|
|
'proceed',
|
|
'seed',
|
|
'shred',
|
|
'speed',
|
|
'succeed',
|
|
'ted',
|
|
'wed',
|
|
'weed'
|
|
];
|