]> granicus.if.org Git - apache/commitdiff
Fix typos.
authorTony Finch <fanf@apache.org>
Sun, 26 Mar 2000 19:03:49 +0000 (19:03 +0000)
committerTony Finch <fanf@apache.org>
Sun, 26 Mar 2000 19:03:49 +0000 (19:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84841 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/layeredio.html

index 2369bc47b75ec2195d69d151976a5f54cb8c6a6c..acf9c1b802357d094a061598b3388a5c9895827a 100644 (file)
@@ -37,10 +37,10 @@ set the handler field to NULL, and allow the core to choose the which
 module gets run next.  If these two fields are not modified, then the server
 will loop forever calling the same module's handler.
 
-<P>Most module's should not write out to the network if they want to take 
+<P>Most modules should not write out to the network if they want to take 
 advantage of layered I/O.  Two BUFF structures have been added to the
-request_rec, one of input, and one for output.  The module should read and
-write to these BUFF's.  The module will also have to setup the input field for
+request_rec, one for input and one for output.  The module should read and
+write to these BUFFs.  The module will also have to setup the input field for
 the next module in the list.  A new function has been added, ap_setup_input,
 which all modules should call before they do any reading to get data to modify.
 This function checks to determine if the previous module set the input field,
@@ -55,10 +55,10 @@ the same pipe.
 <H3>An Example of Layered I/O.</H3> 
 
 <P>This example is the most basic layered I/O example possible.  It is 
-basically CGI's generated by mod_cgi and sent to the network via http_core.
+basically CGIs generated by mod_cgi and sent to the network via http_core.
 
 <P>mod_cgi executes the cgi script, and then sets request_rec->input to 
-the output pipe of the CGI.  It then NULL's out request_rec->handler, and 
+the output pipe of the CGI.  It then NULLs out request_rec->handler, and 
 sets request_rec->content_type to whatever the CGI writes out (in this case,
 text/html).  Finally, mod_cgi returns RERUN_HANDLERS.