1
0
forked from GitHub/gf-rgl

(Hun) Fix agreement in DetCN

This commit is contained in:
Inari Listenmaa
2020-04-19 17:06:27 +02:00
parent 73fb39164f
commit 0b133c7122

View File

@@ -8,7 +8,7 @@ concrete NounHun of Noun = CatHun ** open ResHun, Prelude, Coordination in {
-- : Det -> CN -> NP
DetCN det cn = emptyNP ** det ** {
s = \\c => det.s ! c ++ cn.s ! det.n ! c ;
s = \\c => det.s ! Nom ++ cn.s ! det.n ! c ;
agr = <P3,det.n> ;
} ;