summaryrefslogtreecommitdiff
path: root/documentation/parameters.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 09:20:30 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 09:20:30 +0100
commit5fb706265df748e7959ec9fb5f468333f8539d38 (patch)
tree235256a70d96a4a01e5b09d733d1ecdd72d347d2 /documentation/parameters.html
parent13ba61756010ced6897a0440788768b4238dc60b (diff)
changes to documentation
Diffstat (limited to 'documentation/parameters.html')
-rw-r--r--documentation/parameters.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/parameters.html b/documentation/parameters.html
index 2177554..a9a4c48 100644
--- a/documentation/parameters.html
+++ b/documentation/parameters.html
@@ -282,14 +282,14 @@ swap(10,20);
<p>
When you add your native functions to the extension object, you may supply
an optional third parameter with a list of Php::ByVal and Php::ByRef objects
- that describe the names and types of the parameters that can be passed to
- your function. Internally, the PHP engine runs a check right before every
+ with the names and types of the parameters that are accepted.
+ Internally, the PHP engine runs a check right before every
function call to verify that the passed in parameters are compatible with
the parameter specification that you gave, and will trigger an error if they
are not.
</p>
<p>
Specifying parameters is optional. If you choose to leave this specification
- out it is up to you <i>inside</i> the function to check if there are enough
+ out it is up to you to check <i>inside</i> the function if there are enough
parameters, and if the types are correct.
</p>