summaryrefslogtreecommitdiff
path: root/documentation/constructors-and-destructors.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-08 12:53:39 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-08 12:53:39 +0100
commit2e6efbd587e88be19b0c8f34d1597448125e23cf (patch)
tree026a8c94ddcd215de9be2be0541e54140770fd00 /documentation/constructors-and-destructors.html
parent5b93d44d2a05b3648ec13ae1f076e224d63287d5 (diff)
fixed small typos in documentation, and added article about calling functions
Diffstat (limited to 'documentation/constructors-and-destructors.html')
-rw-r--r--documentation/constructors-and-destructors.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/constructors-and-destructors.html b/documentation/constructors-and-destructors.html
index 7e1398c..57f82c4 100644
--- a/documentation/constructors-and-destructors.html
+++ b/documentation/constructors-and-destructors.html
@@ -198,7 +198,7 @@ Php::Object counter1("Counter");
// the __construct() is being called with value 10
Php::Object counter2("Counter", 10);
-// new builtin DateTime object, constructed with "now"
+// new built-in DateTime object, constructed with "now"
Php::Object time("DateTime", "now");
// valid, a Php::Object is an extended Php::Value, and
@@ -212,7 +212,7 @@ Php::Object copy2 = counter0;
<p>
The constructor of a Php::Object takes the name of a class, and an optional
list of parameters that will be passed to the __construct() function. You
- can use names from builtin PHP classes and other extensions (like DateTime),
+ can use names from built-in PHP classes and other extensions (like DateTime),
classes from your extension (like Counter), and even classes from PHP user
space.
</p>