Skip to content

Commit

Permalink
Align examples' output
Browse files Browse the repository at this point in the history
... not necessarily in the source but at least in the rendered document
  • Loading branch information
stoned committed Nov 29, 2019
1 parent 1912269 commit 353daae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Language/regexes.pod6
Expand Up @@ -2233,7 +2233,7 @@ The B<C<:sigspace>> or B<C<:s>> adverb makes whitespace significant in a
regex.
=begin code :allow<B>
say so "I used Photoshop®" ~~ m:i/ photo shop /; # OUTPUT: «True␤»
say so "I used Photoshop®" ~~ m:i/ photo shop /; # OUTPUT: «True␤»
say so "I used a photo shop" ~~ m:iB<:s>/ photo shop /; # OUTPUT: «True␤»
say so "I used Photoshop®" ~~ m:iB<:s>/ photo shop /; # OUTPUT: «False␤»
=end code
Expand All @@ -2245,7 +2245,7 @@ middle, but C<ab> won't:
=begin code :allow<B>
say so "ab" ~~ m:s/a <.ws> b/; # OUTPUT: «False␤»
say so "a b" ~~ m:s/a <.ws> b/; # OUTPUT: «True␤»
say so "a b" ~~ m:s/a <.ws> b/; # OUTPUT: «True␤»
say so "^&" ~~ m:s/'^' <.ws> '&'/; # OUTPUT: «True␤»
=end code
Expand Down

0 comments on commit 353daae

Please sign in to comment.