From 141074bec342b8223a448b30556d649584873ccc Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Thu, 4 Sep 2025 16:19:12 +0200 Subject: [PATCH] typo infitive -> infinitive --- src/english/DocumentationEng.gf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/english/DocumentationEng.gf b/src/english/DocumentationEng.gf index 7df89b43..2470cc45 100644 --- a/src/english/DocumentationEng.gf +++ b/src/english/DocumentationEng.gf @@ -191,7 +191,7 @@ lin VVPresPart => pp "verb+ing" }) ; s2= frameTable ( - tr (th "infitive" ++ td (v.s ! VVF VInf)) ++ + tr (th "infinitive" ++ td (v.s ! VVF VInf)) ++ tr (th "present" ++ td (v.s ! VVF VPres ++ " " ++ v.s ! VVPresNeg)) ++ tr (th "past" ++ td (v.s ! VVF VPast ++ " " ++ v.s ! VVPastNeg)) ++ --# notpresent tr (th "past part." ++ td (v.s ! VVF VPPart)) ++ @@ -229,7 +229,7 @@ lin oper inflVerb : Verb -> Str = \verb -> frameTable ( - tr (th "infitive" ++ td (verb.s ! VInf)) ++ + tr (th "infinitive" ++ td (verb.s ! VInf)) ++ tr (th "present" ++ td (verb.s ! VPres)) ++ tr (th "past" ++ td (verb.s ! VPast)) ++ --# notpresent tr (th "past part." ++ td (verb.s ! VPPart)) ++