From 416d37eee72e217684f6533647e2c7784b1a71a7 Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 6 May 2026 09:59:18 +0200 Subject: [PATCH] reorder definite and indefinite --- src/somali/DocumentationSom.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/somali/DocumentationSom.gf b/src/somali/DocumentationSom.gf index d207b1d0..a02a0246 100644 --- a/src/somali/DocumentationSom.gf +++ b/src/somali/DocumentationSom.gf @@ -29,8 +29,8 @@ concrete DocumentationSom of Documentation = CatSom ** open ResSom,Prelude,HTML t = "n"; s1 = heading1 "Noun"; s2 = frameTable (tr (td "" ++ th "Sg" ++ th "Pl") ++ - tr (th "Def" ++ td (noun.s ! Def Sg) ++ td (noun.s ! Def Pl)) ++ tr (th "Indef" ++ td (noun.s ! Indef Sg) ++ td (noun.s ! Indef Pl)) ++ + tr (th "Def" ++ td (noun.s ! Def Sg) ++ td (noun.s ! Def Pl)) ++ tr (th "Nom" ++ td (noun.s ! NomSg) ++ td []) ++ tr (th "Numerative" ++ intagAttr "td" "colspan=2" (noun.s ! Numerative))) } ;