1
0
forked from GitHub/gf-rgl

one more fix word order in ExtendGer.PredVPS ; not yet correct for Sub with ConjVPS

This commit is contained in:
Aarne Ranta
2024-07-22 23:59:55 +02:00
parent 6084aef91b
commit d18b889df6

View File

@@ -169,7 +169,7 @@ concrete ExtendGer of Extend =
in case o of {
Main => subj ++ verb.verb ++ verb.compl ;
Inv => verb.verb ++ subj ++ verb.compl ; -- älskar jag henne och sover
Sub => subj ++ verb.verb ++ verb.compl --- not quite correct in ConjVPS
Sub => subj ++ verb.compl ++ verb.verb --- not quite correct in ConjVPS
}
} ;