diff --git a/resource/api/Constructors.gf b/resource/api/Constructors.gf index b1a94f99..2dbf2c0d 100644 --- a/resource/api/Constructors.gf +++ b/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/resource/demo/ClauseI.gf b/resource/demo/ClauseI.gf index c42da9cc..860a7243 100644 --- a/resource/demo/ClauseI.gf +++ b/resource/demo/ClauseI.gf @@ -17,4 +17,6 @@ lin ImpV v = ImpVP (UseV v) ; -- ImpV2 v o = ImpVP (ComplSlash (SlashV2a v) o) ; + + }