1
0
forked from GitHub/gf-rgl

fix order in Malay AdvS

This commit is contained in:
Meowyam
2024-01-24 11:03:49 +08:00
parent 9b675c308e
commit 23adb5a493

View File

@@ -95,7 +95,7 @@ lin
oper
advS : (comma : Str) -> Adverb -> S -> S = \comma,a,sent -> sent ** {
s = sent.s ++ comma ++ a.s
s = a.s ++ comma ++ sent.s
} ;
}