mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
some new overload cases in ParadigmsEng
This commit is contained in:
@@ -2123,7 +2123,7 @@ ending with an //s// and used in the formation of both plural nouns and
|
||||
third-person present-tense verbs.
|
||||
```
|
||||
add_s : Str -> Str = \w -> case w of {
|
||||
_ + "oo" => s + "s" ; -- bamboo
|
||||
_ + "oo" => w + "s" ; -- bamboo
|
||||
_ + ("s" | "z" | "x" | "sh" | "o") => w + "es" ; -- bus, hero
|
||||
_ + ("a" | "o" | "u" | "e") + "y" => w + "s" ; -- boy
|
||||
x + "y" => x + "ies" ; -- fly
|
||||
|
||||
Reference in New Issue
Block a user