philip Sat Jun 1 21:43:41 2002 EDT
Modified files:
/phpdoc/en/reference/math/functions ceil.xml
Log:
Fixing incorrect example.
Index: phpdoc/en/reference/math/functions/ceil.xml
diff -u phpdoc/en/reference/math/functions/ceil.xml:1.2
phpdoc/en/reference/math/functions/ceil.xml:1.3
--- phpdoc/en/reference/math/functions/ceil.xml:1.2 Wed Apr 17 02:39:50 2002
+++ phpdoc/en/reference/math/functions/ceil.xml Sat Jun 1 21:43:41 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/math.xml, last change in rev 1.2 -->
<refentry id="function.ceil">
<refnamediv>
@@ -23,8 +23,8 @@
<title><function>ceil</function> examples</title>
<programlisting role="php">
<![CDATA[
-$five = ceil(4.3); // $five = 5.0;
-$ten = ceil(9.999); // $ten = 10.0;
+echo ceil(4.3); // 5
+echo ceil(9.999); // 10
]]>
</programlisting>
</example>