diff options
Diffstat (limited to 'examples/phrasebook/WordsRon.gf')
| -rw-r--r-- | examples/phrasebook/WordsRon.gf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/phrasebook/WordsRon.gf b/examples/phrasebook/WordsRon.gf index 0d3fafc33..4563ff735 100644 --- a/examples/phrasebook/WordsRon.gf +++ b/examples/phrasebook/WordsRon.gf @@ -72,7 +72,7 @@ concrete WordsRon of Words = SentencesRon ** open Toilet = mkPlace (P.mkN "toaletă") at_Prep ; University = mkPlace (P.mkN "universitate") at_Prep ; Zoo = {name = mkCN (P.mkA "zoologic") (P.mkN "grădină" "grădini"); - to = to_Prep; at = at_Prep }; + to = to_Prep; at = at_Prep; isPl = False }; CitRestaurant cit = mkCNPlace (mkCN cit.prop (P.mkN "restaurant" "restaurante")) in_Prep to_Prep; @@ -257,9 +257,9 @@ mkDay : Str -> {name : NP ; point : Adv ; habitual : Adv} = \d -> -- auxiliaries oper - mkPlace : N -> Prep -> {name : CN ; at : Prep ; to : Prep} = \p,i -> { + mkPlace : N -> Prep -> {name : CN ; at : Prep ; to : Prep; isPl : Bool} = \p,i -> { name = mkCN p ; - at = i ; + at = i ; isPl = False ; to = to_Prep -- in Romanian, most of the time they would be the same } ; |
