diff --git a/lib/resource-1.0/doc/gfdoc/Constructors.html b/lib/resource-1.0/doc/gfdoc/Constructors.html index 965d0635f..b29874873 100644 --- a/lib/resource-1.0/doc/gfdoc/Constructors.html +++ b/lib/resource-1.0/doc/gfdoc/Constructors.html @@ -6,7 +6,7 @@

Constructors: the High-Level Syntax API

-Last update: 2007-04-19 23:22:26 CEST
+Last update: 2007-04-21 00:55:05 CEST

@@ -85,6 +85,7 @@ to this.
         mkText : overload {
           mkText : Text               ;   -- [empty text]
+          mkText : Phr -> Text        ;   -- John walks.
           mkText : Phr -> Text -> Text    -- John walks. ...
           } ;
     
@@ -125,7 +126,10 @@ to this.
           mkCl : VP -> Cl         ;   -- it rains
           mkCl : NP  -> RS -> Cl  ;   -- it is you who did it
           mkCl : Adv -> S  -> Cl  ;   -- it is yesterday she arrived
-          mkCl : NP -> Cl             -- there is a house
+          mkCl : NP -> Cl         ;   -- there is a house
+          mkCl : NP -> AP -> Cl   ;   -- John is warm
+          mkCl : NP -> NP -> Cl   ;   -- John is a man
+          mkCl : NP -> Adv -> Cl      -- John is here
           } ;
 

@@ -274,7 +278,8 @@ More determiners are available in the Structural module
         mkQS : overload {
           mkQS : Tense -> Ant -> Pol -> QCl -> QS ; -- wouldn't John have walked
-          mkQS : QCl  -> QS                         -- does John walk
+          mkQS : QCl  -> QS                       ; -- who walks
+          mkQS : Cl   -> QS                         -- does John walk
           } ;
     
         mkQCl : overload {