philip          Mon Dec  3 13:44:02 2001 EDT

  Modified files:              
    /phpdoc/en/functions        gmp.xml 
  Log:
  Typo fix
  
  
Index: phpdoc/en/functions/gmp.xml
diff -u phpdoc/en/functions/gmp.xml:1.17 phpdoc/en/functions/gmp.xml:1.18
--- phpdoc/en/functions/gmp.xml:1.17    Sat Nov 17 22:07:18 2001
+++ phpdoc/en/functions/gmp.xml Mon Dec  3 13:44:02 2001
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.17 $ -->
+<!-- $Revision: 1.18 $ -->
  <reference id="ref.gmp">
   <title>GMP functions</title>
   <titleabbrev>GMP</titleabbrev>
@@ -54,7 +54,7 @@
 <![CDATA[
 <?php
 function fact ($x) {
-    if ($x &lt;= 1) 
+    if ($x <= 1) 
         return 1;
     else
         return gmp_mul ($x, fact ($x-1));


Reply via email to