This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add a missing comma in the av_fill() docs.
authorShlomi Fish <shlomif@iglu.org.il>
Wed, 19 May 2010 14:46:43 +0000 (17:46 +0300)
committerDavid Golden <dagolden@cpan.org>
Tue, 25 May 2010 16:15:01 +0000 (12:15 -0400)
Minor, but still good enough for a commit.

Signed-off-by: David Golden <dagolden@cpan.org>
av.c

diff --git a/av.c b/av.c
index 06dc606..6e08454 100644 (file)
--- 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)>.