Skip to content

Commit 0d1804c

Browse files
committed
Merge branch 'master' of github.com:perl6/doc
2 parents 7676e00 + b7566bb commit 0d1804c

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)