diff options
author | Shlomi Fish <shlomif@iglu.org.il> | 2010-05-19 17:46:43 +0300 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2010-05-25 12:15:01 -0400 |
commit | 1a3362a5d4e9f2d3548e2937ecf5a9a8a1ac7898 (patch) | |
tree | 2452af38f0cde9eac26bca869649b6679c81c2f9 /av.c | |
parent | 1a32886282d60539000205670909069b85d9eedd (diff) | |
download | perl-1a3362a5d4e9f2d3548e2937ecf5a9a8a1ac7898.tar.gz |
Add a missing comma in the av_fill() docs.
Minor, but still good enough for a commit.
Signed-off-by: David Golden <dagolden@cpan.org>
Diffstat (limited to 'av.c')
-rw-r--r-- | av.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -740,7 +740,7 @@ 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 -av_fill() returns. If the array was previously shorter then the +av_fill() returns. If the array was previously shorter, then the additional elements appended are set to C<PL_sv_undef>. If the array was longer, then the excess elements are freed. C<av_fill(av, -1)> is the same as C<av_clear(av)>. |