sean Mon Feb 7 21:51:47 2005 EDT
Modified files: /phpdoc/en/language oop.xml Log: slightly better wording http://cvs.php.net/diff.php/phpdoc/en/language/oop.xml?r1=1.58&r2=1.59&ty=u Index: phpdoc/en/language/oop.xml diff -u phpdoc/en/language/oop.xml:1.58 phpdoc/en/language/oop.xml:1.59 --- phpdoc/en/language/oop.xml:1.58 Sat Jan 29 01:19:14 2005 +++ phpdoc/en/language/oop.xml Mon Feb 7 21:51:45 2005 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.58 $ --> +<!-- $Revision: 1.59 $ --> <chapter id="language.oop"> <title>Classes and Objects (PHP 4)</title> @@ -249,7 +249,7 @@ The <varname>$this</varname> pseudo-variable is not usually defined if the method in which it is hosted is called statically. This is not, however, a strict rule: <varname>$this</varname> is defined if a method is - called statically from within another object, and the value of + called statically from within another object. In this case, the value of <varname>$this</varname> is that of the calling object. This is illustrated in the following example: <informalexample>