diff --git a/doc/gf-history.html b/doc/gf-history.html index 8b96959cb..7b4e1091c 100644 --- a/doc/gf-history.html +++ b/doc/gf-history.html @@ -19,6 +19,24 @@ for creating SLF networks with sub-automata.
+ plur : Str -> Str = \s -> case s of {
+ CC x (CC ("a" | "o") "y") => s + "s" ;
+ CC x "y" => x + "ies" ;
+ _ => s + "s"
+ } ;
+
+This can be seen as a step towards regular expression string patterns.
+The natural notation p1 + p2 will be considered later.
+
+