diff --git a/lib/resource/api/Constructors.gf b/lib/resource/api/Constructors.gf index b1a94f993..2dbf2c0d5 100644 --- a/lib/resource/api/Constructors.gf +++ b/lib/resource/api/Constructors.gf @@ -355,7 +355,7 @@ incomplete resource Constructors = open Grammar in { -- special case of a simple common noun ($N$) is always provided. mkNP : overload { - mkNP : Art -> NP ; -- 1. the man + mkNP : Art N -> NP ; -- 1. the man mkNP : Art -> (Num) -> CN -> NP ; -- 2. the five old men mkNP : Quant -> N -> NP ; -- 3. this men mkNP : Quant -> (Num) -> CN -> NP; -- 4. these five old men diff --git a/lib/resource/demo/ClauseI.gf b/lib/resource/demo/ClauseI.gf index c42da9cc6..860a72432 100644 --- a/lib/resource/demo/ClauseI.gf +++ b/lib/resource/demo/ClauseI.gf @@ -17,4 +17,6 @@ lin ImpV v = ImpVP (UseV v) ; -- ImpV2 v o = ImpVP (ComplSlash (SlashV2a v) o) ; + + }