This commit is contained in:
yhirose 2021-08-08 12:06:25 -04:00 committed by GitHub
parent 4109480a0c
commit 4760b3e137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -191,7 +191,7 @@ We can ignore unnecessary semantic values from the list by using `~` operator.
```cpp
peg::parser parser(R"(
ROOT <- _ ITEM (',' _ ITEM _)*
ITEM <- ([a-z])+
ITEM <- ([a-z0-9])+
~_ <- [ \t]*
)");