From 01cd146c83918c656058889f4055e3f332e256e3 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Sat, 20 Apr 2013 07:08:42 +0000 Subject: [PATCH] s/r:/r./ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1470114 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_lua.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.40.0