]> granicus.if.org Git - apache/commitdiff
Synch with trunk (remove trailing spaces)
authorChristophe Jaillet <jailletc36@apache.org>
Sun, 1 May 2016 06:26:47 +0000 (06:26 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sun, 1 May 2016 06:26:47 +0000 (06:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1741840 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/hooks.xml

index 3f6651014f84b7d5a9190360e804d9ab12d4f129..0c01da572dada02e97a8c43904b863e22d85dc3c 100644 (file)
@@ -31,9 +31,9 @@
       date.</p>
     </note>
 
-    <p>In general, a hook function is one that the Apache HTTP Server 
-    will call at some point during the processing of a request. 
-    Modules can provide functions that are called, and specify when 
+    <p>In general, a hook function is one that the Apache HTTP Server
+    will call at some point during the processing of a request.
+    Modules can provide functions that are called, and specify when
     they get called in comparison to other modules.</p>
 </summary>
 
@@ -123,7 +123,7 @@ void ap_run_do_something(request_rec *r, int n)
 
         <p>The first hook that does <em>not</em> return <code>DECLINED</code>
         stops the loop and its return value is returned from the hook
-        caller. Note that <code>DECLINED</code> is the traditional 
+        caller. Note that <code>DECLINED</code> is the traditional
         hook return value meaning "I didn't do anything", but it can be
         whatever suits you.</p>
 
@@ -206,7 +206,7 @@ mode MODULE_VAR_EXPORT my_module =
       order relative to each other, but, of course, all modules using
       <code>APR_HOOK_FIRST</code> will be run before <code>APR_HOOK_MIDDLE</code>
       which are before <code>APR_HOOK_LAST</code>. Modules that don't care
-      when they are run should use <code>APR_HOOK_MIDDLE</code>. <em>These 
+      when they are run should use <code>APR_HOOK_MIDDLE</code>. <em>These
       values are spaced out, so that positions like <code>APR_HOOK_FIRST-2</code>
       are possible to hook slightly earlier than other functions.</em></p>