summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-01-06 03:55:57 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-01-06 03:55:57 +0000
commit10889a30843954c81653da41f5ba945531519ebd (patch)
treefcd5091fe55598d8f1f309b71ba1c22b7e33a7ef /ext
parent6b27ed4d8d3a4433922d852b6952cdb6f06d5281 (diff)
downloadphp-git-10889a30843954c81653da41f5ba945531519ebd.tar.gz
Proto fixes.
Diffstat (limited to 'ext')
-rw-r--r--ext/standard/rand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/rand.c b/ext/standard/rand.c
index 78737f4caa..54333fdd16 100644
--- a/ext/standard/rand.c
+++ b/ext/standard/rand.c
@@ -311,7 +311,7 @@ PHP_FUNCTION(mt_srand)
* -RL
*/
-/* {{{ proto int rand([int min, int max])
+/* {{{ proto int rand(int min, int max)
Returns a random number */
PHP_FUNCTION(rand)
{
@@ -336,7 +336,7 @@ PHP_FUNCTION(rand)
}
/* }}} */
-/* {{{ proto int mt_rand([int min, int max])
+/* {{{ proto int mt_rand(int min, int max)
Returns a random number from Mersenne Twister */
PHP_FUNCTION(mt_rand)
{