From: Daniel Gruno Date: Tue, 26 Feb 2013 04:57:17 +0000 (+0000) Subject: fix various typos, thanks to mike rumph as per comment #872 X-Git-Tag: 2.4.5~532 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad602fb0ed03a4e348480f40dd713a3a661a6ad8;p=apache fix various typos, thanks to mike rumph as per comment #872 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1450025 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index c70733ac90..da0b0eb7c1 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: