diff options
author | Eric Brine <ikegami@adaelis.com> | 2009-11-07 20:53:38 -0800 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2009-11-08 12:35:48 +0100 |
commit | 6de131f0f0b420a4dd91ca25f6afce86a924ace9 (patch) | |
tree | e00390237b8387cb17f9ba55181e78a097188399 /pod/perlguts.pod | |
parent | 4decf0e1fe23a344509e4d89e9bda763cf2eeed1 (diff) | |
download | perl-6de131f0f0b420a4dd91ca25f6afce86a924ace9.tar.gz |
s/AvLEN/AvMAX/ in perlguts
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index afc69aef0b..124712c266 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -278,7 +278,7 @@ efficient shifting and splicing off the beginning of the array; while C<AvARRAY> points to the first element in the array that is visible from Perl, C<AvALLOC> points to the real start of the C array. These are usually the same, but a C<shift> operation can be carried out by -increasing C<AvARRAY> by one and decreasing C<AvFILL> and C<AvLEN>. +increasing C<AvARRAY> by one and decreasing C<AvFILL> and C<AvMAX>. Again, the location of the real start of the C array only comes into play when freeing the array. See C<av_shift> in F<av.c>. |