Skip to content

Commit a280123

Browse files
authored
Reword
- ATM there's only one production version of Perl 6 and it has the described semantics - Remove mention of Perl 5, to avoid implication of it being the "previous version." The way Perl 5 does things is a concern for 5-to-6 docs.
1 parent 7c3f853 commit a280123

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

doc/Language/containers.pod6

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,7 @@ to an iteration construct, whereas the C<$> sigil indicates only one value.
239239
my $a = (1, 2, 3);
240240
for $a { }; # 1 iteration
241241
242-
Contrary to earlier versions of Perl 6, and to Perl 5, C<@>-sigiled variables
243-
do not flatten in list context:
242+
C<@>-sigiled variables do not flatten in list context:
244243
245244
my @a = 1, 2, 3;
246245
my @b = @a, 4, 5;

0 commit comments

Comments
 (0)