Skip to content

Commit

Permalink
fix word order in PossNP
Browse files Browse the repository at this point in the history
  • Loading branch information
krangelov committed Dec 15, 2023
1 parent b5fb8c0 commit e7495e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/russian/NounRus.gf
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ lin

-- : CN -> NP -> CN ; -- house of Paris, house of mine
PossNP cn np = cn ** {
s=\\n,cas => np.s ! Gen ++ cn.s ! n ! cas ; -- TODO: possessive pronouns P1, P2
s=\\n,cas => cn.s ! n ! cas ++ np.s ! Gen ; -- TODO: possessive pronouns P1, P2
} ;

-- : CN -> NP -> CN ; -- glass of wine - стакан чаю (чая)
Expand Down

0 comments on commit e7495e1

Please sign in to comment.