]> granicus.if.org Git - apache/commitdiff
xforms
authorDaniel Gruno <humbedooh@apache.org>
Tue, 26 Feb 2013 05:03:02 +0000 (05:03 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Tue, 26 Feb 2013 05:03:02 +0000 (05:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1450026 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/modguide.html.en

index c697d5677af1ac1514b2a2c5215623733fd65388..a58cb0a14c8bf3076f39ff3e98c2b692cf2f9b8f 100644 (file)
@@ -55,7 +55,7 @@ http://www.example.com/index.html.sum</code>.
 <p>
 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.
 </p>
 
 
@@ -333,7 +333,7 @@ request_rec </code> structure are:
 "<a href="#memory">Memory management</a>" chapter.</li>
 </ul>
 <p>
-A complete list of all the values contained with in the <code>request_rec</code> structure can be found in 
+A complete list of all the values contained within the <code>request_rec</code> structure can be found in 
 the <a href="http://svn.apache.org/repos/asf/httpd/httpd/trunk/include/httpd.h"><code>httpd.h</code></a> header 
 file or at <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html">http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html</a>.
 </p>
@@ -1279,7 +1279,7 @@ void* example_create_dir_conf(apr_pool_t* pool, char* context) {
 <h3><a name="context_merge" id="context_merge">Merging configurations</a></h3>
 <p>
 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: 
 </p>
 <pre class="prettyprint lang-config">
@@ -1295,8 +1295,8 @@ where you have a parent configuration and a child, such as the following:
 
 <p>
 In this example, it is natural to assume that the directory <code>
-/var/www/subdir</code> should inherit the value set for the <code>/var/www
-</code> directory, as we did not specify a <code>ExampleEnable</code> nor 
+/var/www/subdir</code> should inherit the values set for the <code>/var/www
+</code> directory, as we did not specify an <code>ExampleEnable</code> nor 
 an <code>ExamplePath</code> for this directory. The server does not presume to 
 know if this is true, but cleverly does the following:
 </p>