[PHP-DOC] cvs: phpdoc /en/language oop.xml From: Hojtsy Gabor (goba <email protected>)
Date: 08/15/01

goba Wed Aug 15 04:27:44 2001 EDT

  Modified files:
    /phpdoc/en/language oop.xml
  Log:
  Closing bug #12750 (echo was missing)
  
  
Index: phpdoc/en/language/oop.xml
diff -u phpdoc/en/language/oop.xml:1.19 phpdoc/en/language/oop.xml:1.20
--- phpdoc/en/language/oop.xml:1.19 Thu Aug 2 13:37:47 2001
+++ phpdoc/en/language/oop.xml Wed Aug 15 04:27:44 2001
@@ -1,4 +1,4 @@
-<!-- $Revision: 1.19 $ -->
+<!-- $Revision: 1.20 $ -->
  <chapter id="language.oop">
   <title>Classes and Objects</title>
 
@@ -303,7 +303,7 @@
 
 class B extends A {
   function C() {
- "I am a regular function.&lt;br>\n";
+ echo "I am a regular function.&lt;br>\n";
   }
 }