diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-14 19:45:15 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-14 19:45:15 -0800 |
| commit | 9b70cb4f624aa19c09ea73b3d9e0f50c032602c5 (patch) | |
| tree | c7f5e51240612c368bf254ea1da19f0f33753da1 | |
| parent | 2c43d65c7db47f2b682b8924669b8e6aef22ec0a (diff) | |
Wording
| -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"}` | |
