vrana           Sun Feb 13 17:05:29 2005 EDT

  Modified files:              
    /phpdoc/en/language variables.xml 
  Log:
  Coding style
  
http://cvs.php.net/diff.php/phpdoc/en/language/variables.xml?r1=1.86&r2=1.87&ty=u
Index: phpdoc/en/language/variables.xml
diff -u phpdoc/en/language/variables.xml:1.86 
phpdoc/en/language/variables.xml:1.87
--- phpdoc/en/language/variables.xml:1.86       Sun Feb 13 17:02:36 2005
+++ phpdoc/en/language/variables.xml    Sun Feb 13 17:05:29 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.86 $ -->
+<!-- $Revision: 1.87 $ -->
  <chapter id="language.variables">
   <title>Variables</title>
   
@@ -493,7 +493,7 @@
      <programlisting role="php">
 <![CDATA[
 <?php
-function Test ()
+function Test()
 {
     $a = 0;
     echo $a;
@@ -557,7 +557,7 @@
     $count++;
     echo $count;
     if ($count < 10) {
-        Test ();
+        Test();
     }
     $count--;
 }

Reply via email to