2021-05-02 08:39:25 +00:00
|
|
|
//library inflection2.verbs_ending_with_ed;
|
|
|
|
|
|
|
|
/// A collection of verbs ending with -ed.
|
|
|
|
final List<String> verbsEndingWithEd = const [
|
2021-05-17 15:10:07 +00:00
|
|
|
'bed',
|
|
|
|
'bleed',
|
|
|
|
'breed',
|
|
|
|
'embed',
|
|
|
|
'exceed',
|
|
|
|
'feed',
|
|
|
|
'heed',
|
|
|
|
'need',
|
|
|
|
'proceed',
|
|
|
|
'seed',
|
|
|
|
'shred',
|
|
|
|
'speed',
|
|
|
|
'succeed',
|
|
|
|
'ted',
|
|
|
|
'wed',
|
|
|
|
'weed'
|
2021-05-02 08:39:25 +00:00
|
|
|
];
|