Index: language/oop5/basic.xml =================================================================== RCS file: /repository/phpdoc/en/language/oop5/basic.xml,v retrieving revision 1.17 diff -u -r1.17 basic.xml --- language/oop5/basic.xml 18 Jul 2006 11:19:52 -0000 1.17 +++ language/oop5/basic.xml 6 Sep 2006 11:43:33 -0000 @@ -127,7 +127,7 @@ new - To create an instance of an object, a new object must be created and + To create an instance of a class, a new object must be created and assigned to a variable. An object will always be assigned when creating a new object unless the object has a constructor defined that throws an @@ -144,9 +144,9 @@ - When assigning an already created instance of an object to a new variable, the new variable + When assigning an already created instance of a class to a new variable, the new variable will access the same instance as the object that was assigned. This - behaviour is the same when passing instances to a function. A new instance + behaviour is the same when passing instances to a function. A copy of an already created object can be made by cloning it.