diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2014-08-06 22:15:24 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2014-08-06 22:15:24 +0200 |
commit | 287e9fa667dea09a6b41b11e1be4ccc73927e200 (patch) | |
tree | ee2eef537cf512ce21944c09577346bcd718dfaf /av.c | |
parent | 7e0dd61bbcc3d45b78105f4cf88b771e40cd342c (diff) | |
download | perl-287e9fa667dea09a6b41b11e1be4ccc73927e200.tar.gz |
Documentation typo fix
Diffstat (limited to 'av.c')
-rw-r--r-- | av.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -776,7 +776,7 @@ Perl_av_len(pTHX_ AV *av) Set the highest index in the array to the given number, equivalent to Perl's C<$#array = $fill;>. -The number of elements in the an array will be C<fill + 1> after +The number of elements in the array will be C<fill + 1> after av_fill() returns. If the array was previously shorter, then the additional elements appended are set to NULL. If the array was longer, then the excess elements are freed. C<av_fill(av, -1)> is |