philip          Mon Dec  3 13:12:53 2001 EDT

  Modified files:              
    /phpdoc/en/language references.xml 
  Log:
  Typo Fix
  
  
Index: phpdoc/en/language/references.xml
diff -u phpdoc/en/language/references.xml:1.18 phpdoc/en/language/references.xml:1.19
--- phpdoc/en/language/references.xml:1.18      Fri Nov 23 16:51:23 2001
+++ phpdoc/en/language/references.xml   Mon Dec  3 13:12:53 2001
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.18 $ -->
+<!-- $Revision: 1.19 $ -->
  <chapter id="language.references">
   <title>References Explained</title>
 
@@ -100,7 +100,7 @@
     <informalexample>
      <programlisting role="php">
 <![CDATA[
-function foo (&amp;$var)
+function foo (&$var)
 {
     $var =& $GLOBALS["baz"];
 }
@@ -248,7 +248,7 @@
      <programlisting role="php">
 <![CDATA[
 $a = 1;
-$b =&amp; $a;
+$b =& $a;
 unset ($a); 
 ]]>
      </programlisting>


Reply via email to