[PHP-DOC] cvs: phpdoc /en/language types.xml From: Derick Rethans (d.rethans <email protected>)
Date: 11/05/01

derick Mon Nov 5 07:29:20 2001 EDT

  Modified files:
    /phpdoc/en/language types.xml
  Log:
  - Fix quotes
  
  
Index: phpdoc/en/language/types.xml
diff -u phpdoc/en/language/types.xml:1.59 phpdoc/en/language/types.xml:1.60
--- phpdoc/en/language/types.xml:1.59 Wed Oct 31 09:21:23 2001
+++ phpdoc/en/language/types.xml Mon Nov 5 07:29:20 2001
@@ -1,5 +1,5 @@
 <?xml encoding="iso-8859-1"?>
-<!-- $Revision: 1.59 $ -->
+<!-- $Revision: 1.60 $ -->
  <chapter id="language.types">
   <title>Types</title>
 
@@ -1156,8 +1156,8 @@
       You might have seen the following syntax in old scripts:
       <informalexample>
        <programlisting role="php">
-$foo[bar] = 'enemy';
-echo $foo[bar];
+$foo['bar'] = 'enemy';
+echo $foo['bar'];
 // etc
        </programlisting>
       </informalexample>