From: Shlomi Fish Date: Wed, 19 May 2010 14:46:43 +0000 (+0300) Subject: Add a missing comma in the av_fill() docs. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1a3362a5d4e9f2d3548e2937ecf5a9a8a1ac7898;p=p5sagit%2Fp5-mst-13.2.git Add a missing comma in the av_fill() docs. Minor, but still good enough for a commit. Signed-off-by: David Golden --- diff --git a/av.c b/av.c index 06dc606..6e08454 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 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. If the array was longer, then the excess elements are freed. C is the same as C.