Skip to content

Commit 7ac8ab1

Browse files
committed
remove trailing whitespace
1 parent bf93d3d commit 7ac8ab1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/grammars.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,11 +198,11 @@ word boundary (C«<|w>»):
198198
# First <.ws> matches word boundary at the start of the line
199199
# and second <.ws> matches the whitespace between 'b' and 'c'
200200
say 'ab c' ~~ /<.ws> ab <.ws> c /; # OUTPUT: «「ab c」␤»
201-
201+
202202
# Failed match: there is neither any whitespace nor a word
203203
# boundary between 'a' and 'b'
204204
say 'ab' ~~ /. <.ws> b/; # OUTPUT: «Nil␤»
205-
205+
206206
# Successful match: there is a word boundary between ')' and 'b'
207207
say ')b' ~~ /. <.ws> b/; # OUTPUT: «「)b」␤»
208208

0 commit comments

Comments
 (0)