From 4f6386ea2a2355a3c4d06dec0a5891f27537bf28 Mon Sep 17 00:00:00 2001 From: David Majda Date: Sat, 16 Jun 2012 15:12:09 +0200 Subject: [PATCH] README.md: Fix typo Based on patch for pegjs-website by Michael Ficarra: https://github.com/dmajda/pegjs-website/pull/2 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0820f30..759cb3a 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ Note that curly braces in the predicate code must be balanced. #### *label* : *expression* -Match the expression and remember its match result under given lablel. The label must be a JavaScript identifier. +Match the expression and remember its match result under given label. The label must be a JavaScript identifier. Labeled expressions are useful together with actions, where saved match results can be accessed by action's JavaScript code.