Skip to content

Commit 6259779

Browse files
committed
Fix V< > showing up in heading for regex
1 parent d70547c commit 6259779

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
@@ -435,7 +435,7 @@ say so 'abababa' ~~ /a .* aba/; # True
435435
say so 'abababa' ~~ /a .*: aba/; # False
436436
=end code
437437
438-
=head1 X<Alternation: C<V«||»>|regex,||>
438+
=head1 X<Alternation: C<||>|regex,||>
439439
440440
To match one of several possible alternatives, separate them by C<||>; the
441441
first matching alternative wins.
@@ -456,7 +456,7 @@ non-whitespace characters, followed by zero or more spaces, followed by the
456456
equals sign C<=>, followed again by optional whitespace, followed by another
457457
string of non-whitespace characters.
458458
459-
=head1 X<Longest Alternation|regex,|>
459+
=head1 X<Longest Alternation: C<|>|regex,|>
460460
461461
In regexes branches separated by C<|>, the longest match wins, independent of
462462
the lexical ordering in the regexes.

0 commit comments

Comments
 (0)