From: Daniel Gruno Date: Tue, 26 Feb 2013 04:54:00 +0000 (+0000) Subject: fix various typos, thanks to mike rumph as per comment #872 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23e9a64b7c695252d8250eb0975c95dd369458f4;p=thirdparty%2Fapache%2Fhttpd.git fix various typos, thanks to mike rumph as per comment #872 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1450024 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index c70733ac90b..da0b0eb7c13 100644 --- a/docs/manual/developer/modguide.xml +++ b/docs/manual/developer/modguide.xml @@ -51,7 +51,7 @@ http://www.example.com/index.html.sum.

In the second part of this document, which deals with configuration directive and context awareness, we will be looking at a module that simply -write out its own configuration to the client. +writes out its own configuration to the client.

@@ -322,7 +322,7 @@ request_rec structure are: "Memory management" chapter.

-A complete list of all the values contained with in the request_rec structure can be found in +A complete list of all the values contained within the request_rec structure can be found in the httpd.h header file or at http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html.

@@ -1244,7 +1244,7 @@ void* example_create_dir_conf(apr_pool_t* pool, char* context) {
Merging configurations

Our next step in creating a context aware configuration is merging -configurations. This part of the process particularly apply to scenarios +configurations. This part of the process particularly applies to scenarios where you have a parent configuration and a child, such as the following:

@@ -1259,8 +1259,8 @@ where you have a parent configuration and a child, such as the following:

In this example, it is natural to assume that the directory -/var/www/subdir should inherit the value set for the /var/www - directory, as we did not specify a ExampleEnable nor +/var/www/subdir should inherit the values set for the /var/www + directory, as we did not specify an ExampleEnable nor an ExamplePath for this directory. The server does not presume to know if this is true, but cleverly does the following: