summaryrefslogtreecommitdiff
path: root/documentation/constructors-and-destructors.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 18:23:24 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 18:23:24 +0100
commit3906515769d999ae1ab042d66efabcdd1caf2d7a (patch)
tree6e884e13025954de54692940d7f3554c6db33fcd /documentation/constructors-and-destructors.html
parentd0974d666fda05cf50fa9ce66097d5d0280abd68 (diff)
changes to documentation
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