summaryrefslogtreecommitdiff
path: root/ext/standard/math.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2005-05-07 12:41:56 +0000
committerAndrey Hristov <andrey@php.net>2005-05-07 12:41:56 +0000
commit8cd3409b300b552b0c7cf40b9772679d41e9cb0b (patch)
treeac2b5f5fd11091d6c27499338e5402d762fd3ba9 /ext/standard/math.c
parent1fd4adb69e2070a68a7599e2ccf19f15d4f56aff (diff)
downloadphp-git-8cd3409b300b552b0c7cf40b9772679d41e9cb0b.tar.gz
update protos
Diffstat (limited to 'ext/standard/math.c')
-rw-r--r--ext/standard/math.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/math.c b/ext/standard/math.c
index 7736bf07a7..56334a5b84 100644
--- a/ext/standard/math.c
+++ b/ext/standard/math.c
@@ -1214,7 +1214,7 @@ static long double php_population_variance(zval *arr, zend_bool sample)
return (vr / elements_num);
}
-/* {{{ proto float math_variance(array a)
+/* {{{ proto float math_variance(array a[, bool sample = false])
Returns the population variance */
PHP_FUNCTION(math_variance)
{
@@ -1237,7 +1237,7 @@ PHP_FUNCTION(math_variance)
/* }}} */
-/* {{{ proto float math_std_dev(array a)
+/* {{{ proto float math_std_dev(array a[, bool sample = false])
Returns the standard deviation */
PHP_FUNCTION(math_std_dev)
{