]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix typos
authorStefan Fritsch <sf@apache.org>
Sun, 19 Sep 2010 18:27:10 +0000 (18:27 +0000)
committerStefan Fritsch <sf@apache.org>
Sun, 19 Sep 2010 18:27:10 +0000 (18:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@998711 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_authz_host.xml

index 1685baceed4683a4ee3de7876b3ad441515cd699..84e1f05787a7e91b00e841f5de994e07a6340a8b 100644 (file)
@@ -209,21 +209,21 @@ address)</description>
     equivalent. The TRACE method is not available to this provider,
     use <directive module="core">TraceEnable</directive> instead.</p>
 
-    <p>The following examples will only allow GET, HEAD, POST, and OPTIONS
+    <p>The following example will only allow GET, HEAD, POST, and OPTIONS
     requests:</p>
 
     <example>
         Require method GET POST OPTIONS<br />
     </example>
 
-    <p>The following examples will allow GET, HEAD, POST, and OPTIONS
+    <p>The following example will allow GET, HEAD, POST, and OPTIONS
     requests without authentication, and require a valid user for all other
     methods:</p>
 
     <example>
         &lt;RequireAny&gt;<br />
-        Require method GET POST OPTIONS<br />
-        Require valid-user<br />
+        &nbsp;Require method GET POST OPTIONS<br />
+        &nbsp;Require valid-user<br />
         &lt;/RequireAny&gt;<br />
     </example>