Skip to content

Commit

Permalink
Fix def of default <ws>
Browse files Browse the repository at this point in the history
Closes #2211 D#2211
  • Loading branch information
zoffixznet committed Jul 24, 2018
1 parent 5a4f058 commit 2d25f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Language/grammars.pod6
Expand Up @@ -211,8 +211,8 @@ Is the same as:
token entry { <key> <.ws> '=' <.ws> <value> <.ws> }
The default C<ws> matches one or more whitespace characters (C<\s>) or a
word boundary (C«<|w>»):
The default C<ws> matches zero or more whitespace characters, as long as that
point is not within a word (in code form, that's C«regex ws { <!ww> \s* }»):
# First <.ws> matches word boundary at the start of the line
# and second <.ws> matches the whitespace between 'b' and 'c'
Expand Down

0 comments on commit 2d25f3f

Please sign in to comment.