aboutsummaryrefslogtreecommitdiff
path: root/grammar/middle-recursion.grm
diff options
context:
space:
mode:
Diffstat (limited to 'grammar/middle-recursion.grm')
-rw-r--r--grammar/middle-recursion.grm2
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar/middle-recursion.grm b/grammar/middle-recursion.grm
index ccb8b58..71cc71f 100644
--- a/grammar/middle-recursion.grm
+++ b/grammar/middle-recursion.grm
@@ -1,3 +1,3 @@
-S -> 'a' S B | B
+main -> 'a' main B | B
A -> 'ab'
B -> A | 'b'