From: Daniel Gruno Date: Sat, 20 Apr 2013 07:08:42 +0000 (+0000) Subject: s/r:/r./ X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f64eed878d74fd0615ca8239c83b4ae9e7365f4f;p=thirdparty%2Fapache%2Fhttpd.git s/r:/r./ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1470114 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 1eeaac7a4ab..f765ebf5a42 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -813,10 +813,10 @@ r:escape_logitem(string) -- Escapes a string for logging -r:strcmp_match(string, pattern) -- Checks if 'string' matches 'pattern' using strcmp_match (globs). +r.strcmp_match(string, pattern) -- Checks if 'string' matches 'pattern' using strcmp_match (globs). -- fx. whether 'www.example.com' matches '*.example.com': -local match = r:strcmp_match("foobar.com", "foo*.com") +local match = r.strcmp_match("foobar.com", "foo*.com") if match then r:puts("foobar.com matches foo*.com") end