]> granicus.if.org Git - apache/commitdiff
s/r:/r./
authorDaniel Gruno <humbedooh@apache.org>
Fri, 19 Apr 2013 14:31:51 +0000 (14:31 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Fri, 19 Apr 2013 14:31:51 +0000 (14:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1469852 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.xml

index 7765931aa40b45905b9fa1e0d69c6726d9e223e3..1eeaac7a4ab855c2a04db4292220d5545034980a 100644 (file)
@@ -843,9 +843,9 @@ r:custom_response(404, "Baleted!")
 </highlight>
 
 <highlight language="lua">
-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
 </highlight>