This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
add missing op_private labels to Concise etc
[perl5.git] / av.c
diff --git a/av.c b/av.c
index 49fef00..0029191 100644 (file)
--- a/av.c
+++ b/av.c
@@ -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