From 23adb5a4936d75225bc46cc9a883de230116ff21 Mon Sep 17 00:00:00 2001 From: Meowyam Date: Wed, 24 Jan 2024 11:03:49 +0800 Subject: [PATCH] fix order in Malay AdvS --- src/malay/SentenceMay.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/malay/SentenceMay.gf b/src/malay/SentenceMay.gf index d09387f9..ddda0769 100644 --- a/src/malay/SentenceMay.gf +++ b/src/malay/SentenceMay.gf @@ -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 } ; }