From: Eric Brine <ikegami@adaelis.com> Date: Sun, 8 Nov 2009 04:53:38 +0000 (-0800) Subject: s/AvLEN/AvMAX/ in perlguts X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6de131f0f0b420a4dd91ca25f6afce86a924ace9;p=p5sagit%2Fp5-mst-13.2.git s/AvLEN/AvMAX/ in perlguts --- diff --git a/pod/perlguts.pod b/pod/perlguts.pod index afc69ae..124712c 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>.