Browse Source

walk back some quotes

Getty Ritter 2 years ago
parent
commit
5d8155be95
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/aquan.matzo

+ 1 - 1
examples/aquan.matzo

@@ -4,7 +4,7 @@ cons ::= p t k w h n;
 
 (* And this could also be done with two rules and a literal
  * assignment *)
-vowel := ('a' | 'e' | 'i' | 'o' | 'u') (4: '' | '\'');
+vowel := ("a" | "e" | "i" | "o" | "u") (4: "" | "'");
 
 (* Here is a weighted disjunction *)
 syll := 4: cons vowel | vowel;