1
0
forked from GitHub/gf-rgl

(Pes) Fix word order in ComplA2

This commit is contained in:
Inari Listenmaa
2019-04-29 13:38:12 +02:00
parent b7e6f23020
commit 08a956223c

View File

@@ -14,7 +14,7 @@ concrete AdjectivePes of Adjective = CatPes ** open ResPes, Prelude in {
---- $SuperlA$ belongs to determiner syntax in $Noun$. ---- $SuperlA$ belongs to determiner syntax in $Noun$.
ComplA2 a np = a ** { ComplA2 a np = a ** {
s = \\m => np2str np ++ a.c2 ++ a.s ! m ; s = \\m => a.c2 ++ np2str np ++ a.s ! m ;
adv = np2str np ++ a.c2 ++ a.adv adv = np2str np ++ a.c2 ++ a.adv
} ; } ;