You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2010/09/19 20:27:10 UTC

svn commit: r998711 - /httpd/httpd/trunk/docs/manual/mod/mod_authz_host.xml

Author: sf
Date: Sun Sep 19 18:27:10 2010
New Revision: 998711

URL: http://svn.apache.org/viewvc?rev=998711&view=rev
Log:
Fix typos

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_authz_host.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authz_host.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authz_host.xml?rev=998711&r1=998710&r2=998711&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authz_host.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authz_host.xml Sun Sep 19 18:27:10 2010
@@ -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>