Skip to content

Commit b333245

Browse files
committed
C<...> to C<<...>> for example containing single <
1 parent 6bee7f2 commit b333245

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/5to6-perlsyn.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Perl 6 is still I<largely> free form. However, there are a few instances
3333
where the presence or lack of whitespace is now significant. For
3434
instance, in Perl 5, you can omit a space following a keyword (e. g.
3535
C<<while($x < 5)>> or C<my($x, $y)>). In Perl 6, that space is required,
36-
thus C<while ($x < 5)> or C<my ($x, $y)>. In Perl 6, however, you can
36+
thus C<<while ($x < 5)>> or C<my ($x, $y)>. In Perl 6, however, you can
3737
omit the parentheses altogether: C<< while $x < 5 >>. This holds for
3838
C<if>, C<for>, etc.
3939

0 commit comments

Comments
 (0)