Skip to content

Commit 69a8d37

Browse files
committed
Unicode should go in caps
1 parent 16d30e0 commit 69a8d37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/regexes.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ Examples for horizontal whitespace characters are
146146
U+2001 EM QUAD
147147
=end code
148148
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.
151151
152152
=item X<C<\v> and C<\V>|regex,\v;regex,\V>
153153
@@ -257,7 +257,7 @@ L<C<uniprop>|/routine/uniprop>:
257257
"a".uniprop('Block'); # OUTPUT: «Basic Latin␤»
258258
"a" ~~ / <:Block('Basic Latin')> /; # OUTPUT: «「a」␤»
259259
260-
These are the unicode general categories used for matching:
260+
These are the Unicode general categories used for matching:
261261
262262
=begin table
263263
@@ -341,7 +341,7 @@ whitespace.
341341
"αβγ" ~~ /<[\c[GREEK SMALL LETTER ALPHA]..\c[GREEK SMALL LETTER GAMMA]]>*/;
342342
343343
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
345345
write the backslashed forms for character classes between the C<[ ]>.
346346
347347
/ <[\d] - [13579]> /;

0 commit comments

Comments
 (0)