File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1142,7 +1142,7 @@ For lookaround assertions:
1142
1142
1143
1143
For more info see L«lookahead assertions|/language/regexes#Lookahead_assertions».
1144
1144
1145
- (Unrelated to C<<>> syntax, the "lookaround" C</foo\Kbar/> becomes C«/foo <( bar )> /»
1145
+ (Unrelated to C«<>» syntax, the "lookaround" C</foo\Kbar/> becomes C«/foo <( bar )> /»
1146
1146
1147
1147
=item C<(?(?{condition))yes-pattern|no-pattern)> becomes C«[ <?{condition}>
1148
1148
yes-pattern | no-pattern ]»
Original file line number Diff line number Diff line change @@ -817,7 +817,7 @@ in Raku regexes.
817
817
/ "this is a test" /; # Raku, quoting the whole string
818
818
/ this .* /; # Raku, possibly interesting string
819
819
820
- =head2 Special matchers generally fall under the C<<>> syntax
820
+ =head2 Special matchers generally fall under the C«<>» syntax
821
821
822
822
There are many cases of special matching syntax that Raku regexes support.
823
823
They won't all be listed here, but often instead of being surrounded by C<()>,
@@ -849,7 +849,7 @@ For look-around assertions:
849
849
850
850
=item C«(?<!ar?bitrary* pattern)» becomes C«<!after ar?bitrary* pattern>»
851
851
852
- (Unrelated to C<<>> syntax, the "lookaround" C</foo\Kbar/> becomes C«/foo <( bar )> /»
852
+ (Unrelated to C«<>» syntax, the "lookaround" C</foo\Kbar/> becomes C«/foo <( bar )> /»
853
853
854
854
=item C<(?(?{condition))yes-pattern|no-pattern)> becomes C«[ <?{condition}>
855
855
yes-pattern | no-pattern ]»
You can’t perform that action at this time.
0 commit comments