Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'master' of github.com:perl6/doc
  • Loading branch information
JJ committed Aug 1, 2018
2 parents 7676e00 + b7566bb commit 0d1804c
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 0d1804c

Please sign in to comment.