22 lines
310 B
Dart
22 lines
310 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"
|
||
|
];
|