Skip to content

Commit ec41c3e

Browse files
committed
fix typo: missing comma
1 parent 1b5a682 commit ec41c3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/containers.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ a thing happening accidentally.
229229
The C<%> and C<@> sigils in Perl 6 generally indicate multiple values
230230
to an iteration construct, whereas the C<$> sigil indicates only one value.
231231
232-
my @a = 1, 2 3;
232+
my @a = 1, 2, 3;
233233
for @a { }; # 3 iterations
234234
my $a = (1, 2, 3);
235235
for $a { }; # 1 iteration

0 commit comments

Comments
 (0)