We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da40fb commit 37d899cCopy full SHA for 37d899c
doc/Language/5to6-nutshell.pod6
@@ -1127,7 +1127,7 @@ use v5.22;
1127
"þor is mighty" =~ /is (?<iswhat>\w+)/n;
1128
say $+{iswhat};
1129
1130
-The C<iswhat> within a non-capturing group is used to actuall capture what is
+The C<iswhat> within a non-capturing group is used to actually capture what is
1131
behind, and up to the end of the group (the C<)>). The capture goes to the C<%+>
1132
hash under the key with the name of the capture. In Perl 6
1133
L<named captures work this way|/language/regexes#Capturing_groups>
xt/code.pws
@@ -271,6 +271,7 @@ ipsum
271
ipv
272
isdst
273
isprime
274
+iswhat
275
iter
276
iters
277
itotallyjustmadethisup
0 commit comments