Skip to content

Commit 961110a

Browse files
committed
Revert "Mention that qqw// can also be written as << >>"
This reverts commit d13b36d.
1 parent d57a155 commit 961110a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

doc/Language/5to6-perlop.pod6

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,12 +296,11 @@ acts as list of C<Pair>s when stringified). You can also interpolate Perl 6
296296
code in strings using curly braces. For all the details, see
297297
L<Interpolation|/language/quoting#Interpolation%3A_qq>.
298298
299-
C<qw> works as in Perl 5, and can also be rendered as C<< <...> >>. E.g.
300-
C<qw/a b c/> is equivalent to C<< <a b c> >>.
299+
C<qw> works as in Perl 5, and can also be rendered as C<< <...> >>. E.
300+
g. C<qw/a b c/> is equivalent to C<< <a b c> >>.
301301
302302
There is also a version of C<qw> that interpolates, which is C<qqw>. So
303-
C<my $a = 42;say qqw/$a b c/;> gives you "42 b c". C<qqw> can also be
304-
rendered as C< <<...>> >.
303+
C<my $a = 42;say qqw/$a b c/;> gives you "42 b c".
305304
306305
Shell quoting is available through C<qx>, but you should note that
307306
backticks do not do shell quoting as in Perl 5, and Perl variables are

0 commit comments

Comments
 (0)