nlopess Sun Jan 25 06:15:47 2004 EDT
Modified files:
/phpdoc/en/reference/math/functions rand.xml
Log:
fix #27032
http://cvs.php.net/diff.php/phpdoc/en/reference/math/functions/rand.xml?r1=1.9&r2=1.10&ty=u
Index: phpdoc/en/reference/math/functions/rand.xml
diff -u phpdoc/en/reference/math/functions/rand.xml:1.9
phpdoc/en/reference/math/functions/rand.xml:1.10
--- phpdoc/en/reference/math/functions/rand.xml:1.9 Wed Dec 17 12:23:17 2003
+++ phpdoc/en/reference/math/functions/rand.xml Sun Jan 25 06:15:47 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/math.xml, last change in rev 1.2 -->
<refentry id="function.rand">
<refnamediv>
@@ -16,7 +16,7 @@
<simpara>
If called without the optional <parameter>min</parameter>,
<parameter>max</parameter> arguments <function>rand</function>
- returns a pseudo-random value between 0 and
+ returns a pseudo-random integer between 0 and
<constant>RAND_MAX</constant>. If you want a random number
between 5 and 15 (inclusive), for example, use <literal>rand (5,
15)</literal>.