Closing bug #12750 (echo was missing)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@54957 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Gabor Hojtsy 2001-08-15 08:27:44 +00:00
parent f075029416
commit 5be1e3b79e

View file

@ -1,4 +1,4 @@
<!-- $Revision: 1.19 $ -->
<!-- $Revision: 1.20 $ -->
<chapter id="language.oop">
<title>Classes and Objects</title>
@ -303,7 +303,7 @@ class A {
class B extends A {
function C() {
"I am a regular function.&lt;br>\n";
echo "I am a regular function.&lt;br>\n";
}
}