error fix in Constructors documentation

This commit is contained in:
aarne
2008-08-22 14:32:42 +00:00
parent c80538e068
commit 976b73d4c9
2 changed files with 3 additions and 1 deletions

View File

@@ -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

View File

@@ -17,4 +17,6 @@ lin
ImpV v = ImpVP (UseV v) ;
-- ImpV2 v o = ImpVP (ComplSlash (SlashV2a v) o) ;
}