diff options
| author | aarne <aarne@cs.chalmers.se> | 2007-06-08 14:38:02 +0000 |
|---|---|---|
| committer | aarne <aarne@cs.chalmers.se> | 2007-06-08 14:38:02 +0000 |
| commit | ebf1d19e159d871fe5cd059e011c52e8c3ea7015 (patch) | |
| tree | aeed42dceda7c429fb1b2ad13c7a4936daa6293a /doc/tutorial/gf-tutorial2.txt | |
| parent | ef9174e35d62492a35b5e4ead908ba893c460815 (diff) | |
some new overload cases in ParadigmsEng
Diffstat (limited to 'doc/tutorial/gf-tutorial2.txt')
| -rw-r--r-- | doc/tutorial/gf-tutorial2.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial/gf-tutorial2.txt b/doc/tutorial/gf-tutorial2.txt index 3ca7414d9..be011f8ca 100644 --- a/doc/tutorial/gf-tutorial2.txt +++ b/doc/tutorial/gf-tutorial2.txt @@ -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 |
