torben          Thu Dec 13 20:11:50 2001 EDT

  Modified files:              
    /phpdoc/en/functions        array.xml 
  Log:
  Whitespace fix in code example.
  
  Remember, don't use tabs to indent code examples; use 4 spaces. See the howto
  for more information.
  
  
Index: phpdoc/en/functions/array.xml
diff -u phpdoc/en/functions/array.xml:1.135 phpdoc/en/functions/array.xml:1.136
--- phpdoc/en/functions/array.xml:1.135 Thu Dec 13 20:00:27 2001
+++ phpdoc/en/functions/array.xml       Thu Dec 13 20:11:48 2001
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.135 $ -->
+<!-- $Revision: 1.136 $ -->
  <reference id="ref.array">
   <title>Array Functions</title>
   <titleabbrev>Arrays</titleabbrev>
@@ -703,9 +703,9 @@
     while (list($k,$v) = each($arr)) {
         if ($term && $v != $term) {
             continue;
-                               }
+        }
         $t[] = $k;
-               }
+    }
     return $t;
 }
 ]]>


Reply via email to