diff options
author | Randal L. Schwartz <merlyn@stonehenge.com> | 1999-08-16 07:24:28 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-17 07:20:23 +0000 |
commit | 4f298f328422852e4cc6390a50d794862100f2b9 (patch) | |
tree | 5f52e9bc9fc04547b033e5162639046a45f81010 /pod/perlobj.pod | |
parent | 5779bbb1f597d1ebb4c7e5a72ad2a31cf4b91093 (diff) | |
download | perl-4f298f328422852e4cc6390a50d794862100f2b9.tar.gz |
[ID 19990816.006] small patch to perlobj.pod from 5.005_03
To: perl5-porters@perl.org
Message-Id: <m1ogg7to4z.fsf@halfdome.holdit.com>
p4raw-id: //depot/cfgperl@4000
Diffstat (limited to 'pod/perlobj.pod')
-rw-r--r-- | pod/perlobj.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlobj.pod b/pod/perlobj.pod index 21073a795a..fa826415c8 100644 --- a/pod/perlobj.pod +++ b/pod/perlobj.pod @@ -339,7 +339,7 @@ confusing precedence problems, as in these next two lines: Those actually parse as the very surprising: $obj->move->{FIELD}; # Well, lookee here - $ary->move->[$i]; # Didn't expect this one, eh? + $ary->move([$i]); # Didn't expect this one, eh? Rather than what you might have expected: |