From: Daniel Gruno Date: Tue, 19 Feb 2013 21:30:12 +0000 (+0000) Subject: typo fixes X-Git-Tag: 2.4.5~561 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78f0f4703002f31b9a4a6ba93b2c8ee0544c0712;p=apache typo fixes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1447929 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index f7934a03ed..c70733ac90 100644 --- a/docs/manual/developer/modguide.xml +++ b/docs/manual/developer/modguide.xml @@ -303,11 +303,11 @@ looks like
The request_rec structure

The most essential part of any request is the request record . In a call to a handler function, this is represented by the -request_req* structure passed along with every call that is made. +request_rec* structure passed along with every call that is made. This struct, typically just refered to as r in modules, contains all the information you need for your module to fully process any HTTP request and respond accordingly.

Some key elements of the -request_req structure are: +request_rec structure are:

-A complete list of all the values contained with in the request_req structure can be found in +A complete list of all the values contained with in 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.

@@ -415,7 +415,7 @@ the next, without informing other handlers.