vrana Fri Apr 29 03:25:24 2005 EDT
Modified files:
/phpdoc/en/language/oop5 static.xml
Log:
Typo (bug #32887)
http://cvs.php.net/diff.php/phpdoc/en/language/oop5/static.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/language/oop5/static.xml
diff -u phpdoc/en/language/oop5/static.xml:1.5
phpdoc/en/language/oop5/static.xml:1.6
--- phpdoc/en/language/oop5/static.xml:1.5 Sat Oct 2 05:40:52 2004
+++ phpdoc/en/language/oop5/static.xml Fri Apr 29 03:25:23 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<sect1 id="language.oop5.static">
<title>Static Keyword</title>
@@ -27,7 +27,7 @@
<para>
In fact <literal>static</literal> method calls are resolved at compile
time. When using an explicit class name the method is already identified
- completley and no inheritance rules apply. If the call is done by
+ completely and no inheritance rules apply. If the call is done by
<literal>self</literal> then <literal>self</literal> is translated to
the current class, that is the class the code belongs to. Here also no
inheritance rules apply.