1
0
forked from GitHub/gf-rgl

(Pes) Rename N2's c to c2 for consistency

This commit is contained in:
Inari Listenmaa
2019-03-01 15:18:55 +01:00
parent 4fe2e38e9b
commit a51a31ca7f
3 changed files with 10 additions and 6 deletions
+3 -3
View File
@@ -86,18 +86,18 @@ concrete NounPes of Noun = CatPes ** open ResPes, Prelude in {
UseN2 = useN ;
Use2N3 n3 = useN n3 ** {
c = n3.c2 ;
c2 = n3.c2 ;
compl = []
} ;
Use3N3 n3 = useN n3 ** {
c = n3.c3 ;
c2 = n3.c3 ;
compl = []
} ;
ComplN2 n2 np = n2 ** {
s = \\n,m => n2.s ! n ! Ezafe ;
compl = \\_ => n2.compl ++ n2.c ++ np.s ! Bare ;
compl = \\_ => n2.compl ++ n2.c2 ++ np.s ! Bare ;
hasAdj = False
};