From 9b70cb4f624aa19c09ea73b3d9e0f50c032602c5 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 14 Jan 2021 19:45:15 -0800 Subject: [PATCH] Wording --- left-recursion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"}` |