File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -146,8 +146,8 @@ Examples for horizontal whitespace characters are
146
146
U+2001 EM QUAD
147
147
= end code
148
148
149
- Vertical whitespace like newline characters are explicitly excluded; those
150
- can be matched with C < \v > , and C < \s > matches any kind of whitespace.
149
+ Vertical whitespace such as newline characters are explicitly excluded; those
150
+ can be matched with C < \v > ; C < \s > matches any kind of whitespace.
151
151
152
152
= item X < C < \v > and C < \V > |regex,\v;regex,\V>
153
153
@@ -257,7 +257,7 @@ L<C<uniprop>|/routine/uniprop>:
257
257
"a".uniprop('Block'); # OUTPUT: «Basic Latin»
258
258
"a" ~~ / <:Block('Basic Latin')> /; # OUTPUT: «「a」»
259
259
260
- These are the unicode general categories used for matching:
260
+ These are the Unicode general categories used for matching:
261
261
262
262
= begin table
263
263
@@ -341,7 +341,7 @@ whitespace.
341
341
"αβγ" ~~ /<[\c[GREEK SMALL LETTER ALPHA]..\c[GREEK SMALL LETTER GAMMA]]>*/;
342
342
343
343
Within the C « < > » you can use C < + > and C < - > to add or remove multiple range
344
- definitions and even mix in some of the unicode categories above. You can also
344
+ definitions and even mix in some of the Unicode categories above. You can also
345
345
write the backslashed forms for character classes between the C < [ ] > .
346
346
347
347
/ <[\d] - [13579]> /;
You can’t perform that action at this time.
0 commit comments