From: Stefan Fritsch
Date: Sun, 19 Sep 2010 18:27:10 +0000 (+0000)
Subject: Fix typos
X-Git-Tag: 2.3.9~479
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2fe603117be5a0b3817f3927ad06a9c1573a3d6;p=thirdparty%2Fapache%2Fhttpd.git
Fix typos
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@998711 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_authz_host.xml b/docs/manual/mod/mod_authz_host.xml
index 1685baceed4..84e1f05787a 100644
--- a/docs/manual/mod/mod_authz_host.xml
+++ b/docs/manual/mod/mod_authz_host.xml
@@ -209,21 +209,21 @@ address)
equivalent. The TRACE method is not available to this provider,
use TraceEnable instead.
- The following examples will only allow GET, HEAD, POST, and OPTIONS
+
The following example will only allow GET, HEAD, POST, and OPTIONS
requests:
Require method GET POST OPTIONS
- The following examples will allow GET, HEAD, POST, and OPTIONS
+
The following example will allow GET, HEAD, POST, and OPTIONS
requests without authentication, and require a valid user for all other
methods:
<RequireAny>
- Require method GET POST OPTIONS
- Require valid-user
+ Require method GET POST OPTIONS
+ Require valid-user
</RequireAny>