diff options
| author | hallgren <hallgren@chalmers.se> | 2010-11-12 16:46:44 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2010-11-12 16:46:44 +0000 |
| commit | b46442ab0b50fe58417b85d34a97a16e7b06de05 (patch) | |
| tree | afc01daec398af317ece15253a463d72b19c8af7 /examples/numerals/finnish.gf | |
| parent | bad36015d23f125ce2d3f1faedd5047aedb6c398 (diff) | |
examples/numerals: adapt to current GF syntax
Diffstat (limited to 'examples/numerals/finnish.gf')
| -rw-r--r-- | examples/numerals/finnish.gf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/numerals/finnish.gf b/examples/numerals/finnish.gf index a2be74d2c..069bb0484 100644 --- a/examples/numerals/finnish.gf +++ b/examples/numerals/finnish.gf @@ -4,9 +4,9 @@ concrete finnish of Numerals = { param Place = indep | attr ; param Nm = sg | pl ; oper sata : Nm => Str = - table {{sg} => "sata" ; {pl} => "sataa"} ; + table {sg => "sata" ; pl => "sataa"} ; oper tuhat : Nm => Str = - table {{sg} => "tuhat" ; {pl} => "tuhatta"} ; + table {sg => "tuhat" ; pl => "tuhatta"} ; lincat Numeral = {s : Str} ; lincat Digit = {s : Str} ; lincat Sub10 = {inh : Nm ; s : Place => Str} ; @@ -32,7 +32,7 @@ lin n8 = lin n9 = {s = "yhdeksän"} ; lin pot01 = - {inh = sg ; s = table {{attr} => [] ; {indep} => "yksi"}} ; + {inh = sg ; s = table {attr => [] ; indep => "yksi"}} ; lin pot0 d = {inh = pl ; s = table {p => d.s}} ; lin pot110 = |
