diff options
Diffstat (limited to 'left-recursion.md')
| -rw-r--r-- | left-recursion.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/left-recursion.md b/left-recursion.md index 3e65e1c..ceea9c0 100644 --- a/left-recursion.md +++ b/left-recursion.md @@ -56,7 +56,7 @@ recursive. Consider the rule `laugh: laugh "ha" / "Ha"` being applied to the input text `"Hahaha!"`: -|Definition of `match(<laugh>, "Hahaha!")` | Result of `match(<laugh "ha" / "Ha">, "Hahaha!")` | +| Temp. definition of `match(<laugh>, "Hahaha!")` | Result of `match(<laugh "ha" / "Ha">, "Hahaha!")` | |------------------------------------------|---------------------------------------------------| |`Fail` | `Match{"Ha"}` | |`Match{"Ha"}` | `Match{"Haha"}` | |
