From 02ebca9562e96cf157b8e91c3a928492ac239f3e Mon Sep 17 00:00:00 2001 From: Bastiaan Veelo Date: Sun, 31 Jan 2016 21:20:57 +0100 Subject: [PATCH] Remove left-recursion from limitations. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 287219d0..408f9acf 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,6 @@ Limitations ----------- * **Pegged** accepts only strings for the time being (wstrings or dstrings were OK as input some time ago, but I recently dropped them). -* As with other top-down recursive descent parsers, **Pegged** has trouble with left-recursive rules for now. But you can do recursive grammars, of course. * Error reporting is the same as for any in-my-own-free-time / just-one-guy parsing project (read: perfectible). * I recently dropped named captures and the `=` and `@` operators.