vrana           Sun Jun 19 10:55:21 2005 EDT

  Modified files:              
    /phpdoc/en/language operators.xml 
  Log:
  Coding standards
  
http://cvs.php.net/diff.php/phpdoc/en/language/operators.xml?r1=1.86&r2=1.87&ty=u
Index: phpdoc/en/language/operators.xml
diff -u phpdoc/en/language/operators.xml:1.86 
phpdoc/en/language/operators.xml:1.87
--- phpdoc/en/language/operators.xml:1.86       Wed Apr 20 10:05:06 2005
+++ phpdoc/en/language/operators.xml    Sun Jun 19 10:55:20 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.86 $ -->
+<!-- $Revision: 1.87 $ -->
  <chapter id="language.operators">
   <title>Operators</title>
   <simpara>
@@ -767,8 +767,10 @@
 <![CDATA[
 <?php
 $i = 'W';
-for($n=0; $n<6; $n++)
-  echo ++$i . "\n";
+for ($n=0; $n<6; $n++) {
+    echo ++$i . "\n";
+}
+?>
 ]]>
      </programlisting>
      &example.outputs;

Reply via email to