diff --git a/doc/tutorial/gf-tutorial2.html b/doc/tutorial/gf-tutorial2.html index 223d6db50..00caa1d58 100644 --- a/doc/tutorial/gf-tutorial2.html +++ b/doc/tutorial/gf-tutorial2.html @@ -7,7 +7,7 @@

Grammatical Framework Tutorial

Author: Aarne Ranta <aarne (at) cs.chalmers.se>
-Last update: Sat Jan 7 21:51:56 2006 +Last update: Wed Jan 25 16:03:03 2006

@@ -1417,7 +1417,7 @@ The application of a table to a parameter is done by the selection operator !. For instance,

-    Cheese.s ! Pl
+     table {Sg => "cheese" ; Pl => "cheeses"} ! Pl
 

is a selection, whose value is "cheeses". @@ -2392,6 +2392,6 @@ English and German. A simpler example will be explained here.

- + diff --git a/doc/tutorial/gf-tutorial2.txt b/doc/tutorial/gf-tutorial2.txt index a5b262053..be88d83f6 100644 --- a/doc/tutorial/gf-tutorial2.txt +++ b/doc/tutorial/gf-tutorial2.txt @@ -1166,7 +1166,7 @@ example shows such a table: The application of a table to a parameter is done by the **selection** operator ``!``. For instance, ``` - Cheese.s ! Pl + table {Sg => "cheese" ; Pl => "cheeses"} ! Pl ``` is a selection, whose value is ``"cheeses"``.