Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes typos in regexes:: Capture Markers
Three typos fixed.
  • Loading branch information
Moray committed Aug 1, 2018
1 parent 1cdd59e commit 542b098
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/Language/regexes.pod6
Expand Up @@ -1136,9 +1136,9 @@ C<\K>.
say 'abc' ~~ / a <( b )> c/; # OUTPUT: «「b」␤»
say 'abc' ~~ / <(a <( b )> c)>/; # OUTPUT: «「bc」␤»
As the example above, you can see C«<(» sets the start point and C«)>» sets the
endpoint; since they are actually independent each other, the inner-most start point
wins (the one attache to C<b>) and the outer-most end wins (the one attached to C<c>).
As in the example above, you can see C«<(» sets the start point and C«)>» sets the
endpoint; since they are actually independent of each other, the inner-most start point
wins (the one attached to C<b>) and the outer-most end wins (the one attached to C<c>).
=head1 Substitution
Expand Down

0 comments on commit 542b098

Please sign in to comment.