mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-08-26 06:06:24 -06:00
fix the word order for superlatives
This commit is contained in:
@@ -42,12 +42,12 @@ oper
|
||||
mkDet : Str -> Det = \s -> lin Det {
|
||||
s,sp = \\_,c => prepCase c ++ s ;
|
||||
spn = \\c => prepCase c ++ s ;
|
||||
n = Sg ; s2 = [] ; isNeg = False
|
||||
n = Sg ; s2 = \\g => [] ; isNeg = False
|
||||
} ;
|
||||
mkDet : Str -> Str -> Number -> Det = \m,f,n -> lin Det {
|
||||
s,sp = \\g,c => prepCase c ++ case g of {Masc => m ; Fem => f} ;
|
||||
spn = \\c => prepCase c ++ m ;
|
||||
n = n ; s2 = [] ; isNeg = False
|
||||
n = n ; s2 = \\g => [] ; isNeg = False
|
||||
} ;
|
||||
} ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user