summaryrefslogtreecommitdiff
path: root/av.c
diff options
context:
space:
mode:
authorShlomi Fish <shlomif@iglu.org.il>2010-05-19 17:46:43 +0300
committerDavid Golden <dagolden@cpan.org>2010-05-25 12:15:01 -0400
commit1a3362a5d4e9f2d3548e2937ecf5a9a8a1ac7898 (patch)
tree2452af38f0cde9eac26bca869649b6679c81c2f9 /av.c
parent1a32886282d60539000205670909069b85d9eedd (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/av.c b/av.c
index 06dc6066cd..6e08454e1f 100644
--- a/av.c
+++ b/av.c
@@ -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)>.