summaryrefslogtreecommitdiff
path: root/documentation/exceptions.html
diff options
context:
space:
mode:
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 &params)
{
// division by zero is not permitted, throw an exception when this happens
if (params[1] == 0) throw Php::Exception("Division by zero");