From: Daniel Gruno Date: Fri, 19 Apr 2013 14:31:51 +0000 (+0000) Subject: s/r:/r./ X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd9072ce3bc5cd56fbb7f453e00193b771215b59;p=thirdparty%2Fapache%2Fhttpd.git s/r:/r./ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1469852 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 7765931aa40..1eeaac7a4ab 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -843,9 +843,9 @@ r:custom_response(404, "Baleted!") -r:exists_config_define(string) -- Checks whether a configuration definition exists or not: +r.exists_config_define(string) -- Checks whether a configuration definition exists or not: -if r:exists_config_define("FOO") then +if r.exists_config_define("FOO") then r:puts("httpd was probably run with -DFOO, or it was defined in the configuration") end