Skip to content

Commit b7566bb

Browse files
authored
Merge pull request #2236 from MorayJ/master
Fixes typos in regexes:: Capture Markers Thanks!
2 parents 1cdd59e + 542b098 commit b7566bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Language/regexes.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1136,9 +1136,9 @@ C<\K>.
11361136
say 'abc' ~~ / a <( b )> c/; # OUTPUT: «「b」␤»
11371137
say 'abc' ~~ / <(a <( b )> c)>/; # OUTPUT: «「bc」␤»
11381138
1139-
As the example above, you can see C«<(» sets the start point and C«)>» sets the
1140-
endpoint; since they are actually independent each other, the inner-most start point
1141-
wins (the one attache to C<b>) and the outer-most end wins (the one attached to C<c>).
1139+
As in the example above, you can see C«<(» sets the start point and C«)>» sets the
1140+
endpoint; since they are actually independent of each other, the inner-most start point
1141+
wins (the one attached to C<b>) and the outer-most end wins (the one attached to C<c>).
11421142
11431143
=head1 Substitution
11441144

0 commit comments

Comments
 (0)