Skip to content

Commit f41e3a4

Browse files
committed
Fix indentation for example of Language/control/next.
1 parent 297b8a1 commit f41e3a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Language/control.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -605,9 +605,9 @@ The C<next> command starts the next iteration of the loop. So the code
605605
=begin code
606606
607607
my @x = 1, 2, 3, 4, 5;
608-
for @x -> $x {
609-
next if $x == 3;
610-
print $x;
608+
for @x -> $x {
609+
next if $x == 3;
610+
print $x;
611611
}
612612
613613
=end code

0 commit comments

Comments
 (0)