diff options
author | John Stumbles <jstumbles@bluearc.com> | 2002-01-21 14:19:56 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-23 14:19:01 +0000 |
commit | 88fd19e345bb4a13d93eb0557302a9d5ee94e665 (patch) | |
tree | b7a6684f0f6668790779a52a8c467eb54c95f673 /pod/perldata.pod | |
parent | 301daebccb7cf8ef4420fe0ae3cdddd299f11568 (diff) | |
download | perl-88fd19e345bb4a13d93eb0557302a9d5ee94e665.tar.gz |
[ID 20020121.003] perldata doco bug
Message-Id: <4586CA8FDDC2D411A1C700508BB4AC33016765D1@ukexchange.synaxia.com>
p4raw-id: //depot/perl@14386
Diffstat (limited to 'pod/perldata.pod')
-rw-r--r-- | pod/perldata.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldata.pod b/pod/perldata.pod index f2484dbc7e..9478cc88b4 100644 --- a/pod/perldata.pod +++ b/pod/perldata.pod @@ -636,7 +636,7 @@ The previous assignments are exactly equivalent to ($days[3], $days[4], $days[5]) = qw/Wed Thu Fri/; ($colors{'red'}, $colors{'blue'}, $colors{'green'}) = (0xff0000, 0x0000ff, 0x00ff00); - ($folks[0], $folks[-1]) = ($folks[0], $folks[-1]); + ($folks[0], $folks[-1]) = ($folks[-1], $folks[0]); Since changing a slice changes the original array or hash that it's slicing, a C<foreach> construct will alter some--or even all--of the |