From 08a956223c8a7e374b807d5e95dea99cb4dbef88 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Mon, 29 Apr 2019 13:38:12 +0200 Subject: [PATCH] (Pes) Fix word order in ComplA2 --- src/persian/AdjectivePes.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/persian/AdjectivePes.gf b/src/persian/AdjectivePes.gf index ca7bed159..685279e0f 100644 --- a/src/persian/AdjectivePes.gf +++ b/src/persian/AdjectivePes.gf @@ -14,7 +14,7 @@ concrete AdjectivePes of Adjective = CatPes ** open ResPes, Prelude in { ---- $SuperlA$ belongs to determiner syntax in $Noun$. ComplA2 a np = a ** { - s = \\m => np2str np ++ a.c2 ++ a.s ! m ; + s = \\m => a.c2 ++ np2str np ++ a.s ! m ; adv = np2str np ++ a.c2 ++ a.adv } ;