You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2022/05/08 12:28:52 UTC

svn commit: r1900690 - /httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml

Author: jailletc36
Date: Sun May  8 12:28:51 2022
New Revision: 1900690

URL: http://svn.apache.org/viewvc?rev=1900690&view=rev
Log:
Fix a typo (s/virtal/virtual) and add a missing hyper-link.

r1900689 in trunk

[skip ci]

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml?rev=1900690&r1=1900689&r2=1900690&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml Sun May  8 12:28:51 2022
@@ -1593,7 +1593,7 @@ end
 <override>All</override>
     <usage>
     <p>Like <directive>LuaHookTranslateName</directive> but executed at the 
-    map-to-storage phase of a request. Modules like mod_cache run at this phase,
+    map-to-storage phase of a request. Modules like <module>mod_cache</module> run at this phase,
     which makes for an interesting example on what to do here:</p>
     <highlight language="config">
     LuaHookMapToStorage "/path/to/lua/script.lua" check_cache
@@ -1787,7 +1787,7 @@ hook function usually returns OK, DECLIN
 <override>All</override>
 <usage>
     <p>
-    This phase is run immediately after the request has been mapped to a virtal host, 
+    This phase is run immediately after the request has been mapped to a virtual host, 
     and can be used to either do some request processing before the other phases kick 
     in, or to serve a request without the need to translate, map to storage et cetera. 
     As this phase is run before anything else, directives such as <directive