From 0654a16ebcda4c117d74740b54439cfd67eb936d Mon Sep 17 00:00:00 2001 From: yhirose Date: Mon, 15 Jun 2015 16:05:36 -0400 Subject: [PATCH] Updated README. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a24307d..1c972e9 100644 --- a/README.md +++ b/README.md @@ -295,14 +295,14 @@ The following are available operators: Adjust definitions ------------------ -It's possible to add and override definitions with parser operaters. +It's possible to add/override definitions. ```c++ auto syntax = R"( ROOT <- _ 'Hello' _ NAME '!' _ )"; -Rules rules = { +Rules additional_rules = { { "NAME", usr([](const char* s, size_t n, SemanticValues& sv, any& c) -> size_t { static vector names = { "PEG", "BNF" };