]> granicus.if.org Git - apache/commitdiff
typo fix (/w+ should be \w+)
authorDaniel Gruno <humbedooh@apache.org>
Sat, 28 Apr 2012 06:40:14 +0000 (06:40 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Sat, 28 Apr 2012 06:40:14 +0000 (06:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1331691 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.html.en
docs/manual/mod/mod_lua.xml

index 6b0d1cbfdda06df3441e97d4a342e0f96c72e8a4..e4f3a4976de8284836e804148bbd6f7b77200914 100644 (file)
@@ -691,7 +691,7 @@ end
     be careful writing your regular expressions to avoid security
     issues.</p>
    <div class="example"><h3>Examples:</h3><pre class="prettyprint lang-config">
-    LuaMapHandler /(\w+)/(/w+) /scripts/$1.lua handle_$2
+    LuaMapHandler /(\w+)/(\w+) /scripts/$1.lua handle_$2
     </pre>
 </div>
         <p>This would match uri's such as /photos/show?id=9
index 1e40678582ec391f04283b29aed1f34b18d4736a..043c99a606c7a20679a344483e062208c7064a39 100644 (file)
@@ -461,7 +461,7 @@ end
     issues.</p>
    <example><title>Examples:</title>
    <highlight language="config">
-    LuaMapHandler /(\w+)/(/w+) /scripts/$1.lua handle_$2
+    LuaMapHandler /(\w+)/(\w+) /scripts/$1.lua handle_$2
     </highlight>
    </example>
         <p>This would match uri's such as /photos/show?id=9