philip          Fri Nov 30 17:09:13 2001 EDT

  Modified files:              
    /phpdoc/en/language variables.xml 
  Log:
  Fix CDATA typo
  
  
Index: phpdoc/en/language/variables.xml
diff -u phpdoc/en/language/variables.xml:1.24 phpdoc/en/language/variables.xml:1.25
--- phpdoc/en/language/variables.xml:1.24       Fri Nov 23 16:51:23 2001
+++ phpdoc/en/language/variables.xml    Fri Nov 30 17:09:13 2001
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.24 $ -->
+<!-- $Revision: 1.25 $ -->
  <chapter id="language.variables">
   <title>Variables</title>
   
@@ -78,6 +78,7 @@
 echo $foo;                 // $foo is altered too.
 echo $bar;
 ?>
+]]>
      </programlisting>
     </informalexample>
    </para>
@@ -87,6 +88,7 @@
     assigned by reference.
     <informalexample>
      <programlisting role="php">
+<![CDATA[
 <?php
 $foo = 25;
 $bar = &$foo;      // This is a valid assignment.
@@ -97,7 +99,7 @@
    return 25;
 }
 
-$bar = &amp;test();    // Invalid.
+$bar = &test();    // Invalid.
 ?>
 ]]>
      </programlisting>


Reply via email to