summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2001-03-12 03:10:15 +0000
committerAndrei Zmievski <andrei@php.net>2001-03-12 03:10:15 +0000
commit40dd7eef96de2a6568a782b9f94d4387bb278d1e (patch)
treea06bc66254c74b1b6b1f0c37003d2910d8153479
parent13148b549121ca0e83f1a9e4a330763257e317c9 (diff)
downloadphp-git-40dd7eef96de2a6568a782b9f94d4387bb278d1e.tar.gz
This will have to do until the docs come along.
-rw-r--r--ext/standard/array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c
index 7dcf6b7ebb..c3596c0f6a 100644
--- a/ext/standard/array.c
+++ b/ext/standard/array.c
@@ -2816,7 +2816,7 @@ PHP_FUNCTION(array_sum)
/* }}} */
/* {{{ proto mixed array_reduce(array input, mixed callback [, int initial])
- Reduce the array by calling the callback */
+ Iteratively reduce the array to a single value via the callback. */
PHP_FUNCTION(array_reduce)
{
zval **input, **callback, **initial;