From 70e044aa08bb8fa09dab0b29f50582f021fb50c1 Mon Sep 17 00:00:00 2001 From: inari Date: Thu, 8 May 2014 13:20:14 +0000 Subject: [PATCH] Corrected examples in ParadigmDut --- lib/src/dutch/ParadigmsDut.gf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/src/dutch/ParadigmsDut.gf b/lib/src/dutch/ParadigmsDut.gf index 68bf58575..e340a6e55 100644 --- a/lib/src/dutch/ParadigmsDut.gf +++ b/lib/src/dutch/ParadigmsDut.gf @@ -46,10 +46,10 @@ oper --2 Nouns mkN : overload { - mkN : (muis : Str) -> N ; -- de muis-muisen, with some predictable exceptions + mkN : (boek : Str) -> N ; -- de boek-boeken, with some predictable exceptions mkN : (bit : Str) -> Gender -> N ; -- if gender is not predictable - mkN : (gat,gaten : Str) -> Gender -> N ; -- worst-case for nouns - mkN : (huis, boot : N) -> N ; -- compound huisboot + mkN : (gat, gaten : Str) -> Gender -> N ; -- worst-case for nouns + mkN : (werk, plaats : N) -> N ; -- compound werkplaats mkN : (station, hal : N) -> Case -> N ; -- compound stationshal } ;