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(, "Hahaha!")` | Result of `match(, "Hahaha!")` | +| Temp. definition of `match(, "Hahaha!")` | Result of `match(, "Hahaha!")` | |------------------------------------------|---------------------------------------------------| |`Fail` | `Match{"Ha"}` | |`Match{"Ha"}` | `Match{"Haha"}` |