From: Daniel Gruno Date: Sat, 20 Apr 2013 07:08:42 +0000 (+0000) Subject: s/r:/r./ X-Git-Tag: 2.5.0-alpha~5565 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01cd146c83918c656058889f4055e3f332e256e3;p=apache 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 1eeaac7a4a..f765ebf5a4 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