fix #31257: s/overloaded/overrided

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@175786 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Mehdi Achour 2004-12-28 14:39:19 +00:00
parent 9df615a9a6
commit 5aff634366

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<sect1 id="language.oop5.basic">
<title>The Basics</title>
@ -103,10 +103,10 @@ object(SimpleClass)#1 (1) {
classes, a class can only inherit one base class.
</para>
<para>
The inherited methods and members can be overloaded, unless the parent
The inherited methods and members can be overrided, unless the parent
class has defined a method as <link linkend="language.oop5.final">final</link>,
by redeclaring them within the same name defined in the parent class.
It is possible to access the overloaded method or members by
It is possible to access the overrided method or members by
referencing them with <link linkend="language.oop5.paamayim-nekudotayim">parent::</link>
</para>
<example>