summaryrefslogtreecommitdiff
path: root/documentation/exceptions.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-04-28 13:36:46 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-04-28 13:36:46 +0200
commit2917f09f5f4573df4ae810da1351003076adf4a8 (patch)
tree7136fcf12d41c603f4bfa69ea8be865972697bcd /documentation/exceptions.html
parenta7aa0760a01857606ea67c5d8c63df39e0274952 (diff)
added documentation about php.ini variables, and fixed typo in exception documentation
Diffstat (limited to 'documentation/exceptions.html')
-rw-r--r--documentation/exceptions.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/exceptions.html b/documentation/exceptions.html
index c4f0e5c..f3938ae 100644
--- a/documentation/exceptions.html
+++ b/documentation/exceptions.html
@@ -17,7 +17,7 @@
* and that divides them. Division by zero is of course
* not permitted - it will throw an exception then
*/
-Php::Value myDiv(Php::Parameters &params)
+Php::Value myDiv(Php::Parameters &amp;params)
{
// division by zero is not permitted, throw an exception when this happens
if (params[1] == 0) throw Php::Exception("Division by zero");