summaryrefslogtreecommitdiff
path: root/documentation/constructors-and-destructors.html
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/constructors-and-destructors.html')
-rw-r--r--documentation/constructors-and-destructors.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/constructors-and-destructors.html b/documentation/constructors-and-destructors.html
index a28f371..019bbe4 100644
--- a/documentation/constructors-and-destructors.html
+++ b/documentation/constructors-and-destructors.html
@@ -94,7 +94,7 @@ $d = new DERIVED();
</p>
<p>
This PHP script correctly outputs 'doSomething()'. This happens because the
- __construct() method in PHP is not a real constructor. It constructs nothing, it
+ __construct() method in PHP does not really construct anything, it
has access to all members, and (when available)
also the base class and overridden methods. In fact, __construct() is not a
constructor at all, but a very