aboutsummaryrefslogtreecommitdiff
path: root/left-recursion.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-14 19:45:15 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-14 19:45:15 -0800
commit9b70cb4f624aa19c09ea73b3d9e0f50c032602c5 (patch)
treec7f5e51240612c368bf254ea1da19f0f33753da1 /left-recursion.md
parent2c43d65c7db47f2b682b8924669b8e6aef22ec0a (diff)
Wording
Diffstat (limited to 'left-recursion.md')
-rw-r--r--left-recursion.md2
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"}` |