1
0
forked from GitHub/gf-rgl

fix bug in regV: there was a past tense form created as present participle

This commit is contained in:
Inari Listenmaa
2018-01-18 10:55:29 +01:00
parent 3fc418c0e9
commit 5d9393b5ce

View File

@@ -513,7 +513,7 @@ mkInterj : Str -> Interj
_ + "ee" => cry + "ing" ; _ + "ee" => cry + "ing" ;
d + "ie" => d + "ying" ; d + "ie" => d + "ying" ;
us + "e" => us + "ing" ; us + "e" => us + "ing" ;
ent + "er" => ent + "ered" ; ent + "er" => ent + "ering" ;
_ => duplFinal cry + "ing" _ => duplFinal cry + "ing"
} }
in mk5V cry cries cried cried crying ; in mk5V cry cries cried cried crying ;