Skip to content

Commit 353daae

Browse files
committed
Align examples' output
... not necessarily in the source but at least in the rendered document
1 parent 1912269 commit 353daae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/regexes.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2233,7 +2233,7 @@ The B<C<:sigspace>> or B<C<:s>> adverb makes whitespace significant in a
22332233
regex.
22342234
22352235
=begin code :allow<B>
2236-
say so "I used Photoshop®" ~~ m:i/ photo shop /; # OUTPUT: «True␤»
2236+
say so "I used Photoshop®" ~~ m:i/ photo shop /; # OUTPUT: «True␤»
22372237
say so "I used a photo shop" ~~ m:iB<:s>/ photo shop /; # OUTPUT: «True␤»
22382238
say so "I used Photoshop®" ~~ m:iB<:s>/ photo shop /; # OUTPUT: «False␤»
22392239
=end code
@@ -2245,7 +2245,7 @@ middle, but C<ab> won't:
22452245
22462246
=begin code :allow<B>
22472247
say so "ab" ~~ m:s/a <.ws> b/; # OUTPUT: «False␤»
2248-
say so "a b" ~~ m:s/a <.ws> b/; # OUTPUT: «True␤»
2248+
say so "a b" ~~ m:s/a <.ws> b/; # OUTPUT: «True␤»
22492249
say so "^&" ~~ m:s/'^' <.ws> '&'/; # OUTPUT: «True␤»
22502250
=end code
22512251

0 commit comments

Comments
 (0)