]> granicus.if.org Git - apache/commitdiff
Merge r1326942 from trunk:
authorDaniel Gruno <humbedooh@apache.org>
Tue, 17 Apr 2012 06:28:55 +0000 (06:28 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Tue, 17 Apr 2012 06:28:55 +0000 (06:28 +0000)
fixing some typos

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1326944 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/modguide.xml

index 95cae6d83b2ce78be5466534e42858c6de8dafec..29d6a6b6f2530d7e330d6c06dc02fa2087b4c05a 100644 (file)
@@ -58,7 +58,7 @@ First and foremost, you are expected to have a basic knowledge of how the C
 programming language works. In most cases, we will try to be as pedagogical 
 as possible and link to documents describing the functions used in the 
 examples, but there are also many cases where it is necessary to either 
-just assume that "it works" or do some digging youself into what the hows 
+just assume that "it works" or do some digging yourself into what the hows 
 and whys of various function calls. 
 </p>
 <p>
@@ -105,7 +105,7 @@ module AP_MODULE_DECLARE_DATA   example_module <code style='color:#806030; '>=</
 
 This bit of code lets the server know that we have now registered a new module 
 in the system, and that its name is <code>example_module</code>. The name 
-of the module is used primarilly for two things:<br/>
+of the module is used primarily for two things:<br/>
 <ul>
 <li>Letting the server know how to load the module using the LoadModule</li>
 <li>Setting up a namespace for the module to use in configurations</li>
@@ -357,7 +357,7 @@ status code, for example:
 <!-- END EXAMPLE CODE -->
 
 
-Returning <code>OK</code> or a HTTP status code does not necessarilly mean 
+Returning <code>OK</code> or a HTTP status code does not necessarily mean 
 that the request will end. The server may still have other handlers that are 
 interested in this request, for instance the logging modules which, upon a 
 successful request, will write down a summary of what was requested and how 
@@ -438,7 +438,7 @@ clean up after yourself - pretty neat, huh?
 </p>
 
 <p>
-In our module, we will primarilly be allocating memory for each request, so 
+In our module, we will primarily be allocating memory for each request, so 
 it's appropriate to use the <code style='color:#008833'>r-&gt;pool</code> 
 reference when creating new objects. A few of the functions for allocating 
 memory within a pool are:
@@ -836,7 +836,7 @@ for more macros).</li>
 configuration in order to invoke a configuration change in our module.</li>
 <li><code>example_set_enabled</code>: This is a reference to a C function that parses the directive and sets the configuration 
 accordingly. We will discuss how to make this in the following paragraph.</li>
-<li><code>RSRC_CONF</code>: This tells the server where the directive is permissable. We'll go into details on this value in the 
+<li><code>RSRC_CONF</code>: This tells the server where the directive is permitted. We'll go into details on this value in the 
 later chapters, but for now, <code>RSRC_CONF</code> means that the server will only accept these directives in a server context.</li>
 <li><code>"Enable or disable...."</code>: This is simply a brief description of what the directive does.</li>
 </ol>