From fa47bbea998c6bd7f1a7a65a736673a4e20345a4 Mon Sep 17 00:00:00 2001 From: Ico Doornekamp Date: Sat, 3 Feb 2024 15:04:47 +0100 Subject: [PATCH] fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a529087..05db1ef 100644 --- a/README.md +++ b/README.md @@ -554,7 +554,7 @@ the `^` operator is matched, either one of the next three cases applies: - `P ^ 0`: resets the current precedence to 0 and continues parsing. This main use case for this is parsing sub-expressions in parentheses. -The heart of a Prett parser in NPeg would look something like this: +The heart of a Pratt parser in NPeg would look something like this: ```nim exp <- prefix * *infix