summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2005-10-02 04:42:46 +0000
committerSteve Peters <steve@fisharerojo.org>2005-10-02 04:42:46 +0000
commitcde9c2113453df62687a8b4e5904da70e91f3a36 (patch)
treee6548dc193db297ef8b5855a3271d44e2d4f7bbe
parente31de809cfcd2cd474c39462e24b263d3e5fb20d (diff)
downloadperl-cde9c2113453df62687a8b4e5904da70e91f3a36.tar.gz
Clarify the documentation regarding the return value from C<push>.
p4raw-id: //depot/perl@25678
-rw-r--r--pod/perlfunc.pod3
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 5f7fd7331b..b5a98b640a 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -4027,7 +4027,8 @@ LIST. Has the same effect as
$ARRAY[++$#ARRAY] = $value;
}
-but is more efficient. Returns the new number of elements in the array.
+but is more efficient. Returns the number of elements in the array following
+the completed C<push>.
=item q/STRING/