From 435d275e2b9de8d6100fe38d07e229452d41a832 Mon Sep 17 00:00:00 2001 From: Rico Antonio Felix Date: Sat, 8 Aug 2015 12:22:22 -0400 Subject: Corrected syntax error in documentation code fragment... --- documentation/lambda-functions.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/lambda-functions.html b/documentation/lambda-functions.html index 9278234..288c97b 100644 --- a/documentation/lambda-functions.html +++ b/documentation/lambda-functions.html @@ -57,7 +57,7 @@ other_function(function() { void other_function(Php::Parameters &params) { // make sure the function was really called with at least one parameter - if (params.size() == 0) return nullptr; + if (params.size() == 0) return; // this function is called from PHP user space, and it is called // with a anonymous function as its first parameter -- cgit v1.2.3