You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ch...@hyperreal.org on 1999/11/20 19:08:00 UTC

cvs commit: modperl/Apache Apache.pm

cholet      99/11/20 10:07:59

  Modified:    Apache   Apache.pm
  Log:
  documentation typos
  
  Revision  Changes    Path
  1.37      +6 -6      modperl/Apache/Apache.pm
  
  Index: Apache.pm
  ===================================================================
  RCS file: /export/home/cvs/modperl/Apache/Apache.pm,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- Apache.pm	1999/11/15 19:59:08	1.36
  +++ Apache.pm	1999/11/20 18:07:58	1.37
  @@ -214,9 +214,9 @@
   
   The request object holds all the information that the server needs to
   service a request.  Apache B<Perl*Handler>s will be given a reference to the
  -request object as parameter and may choose update or use it in various
  +request object as parameter and may choose to update or use it in various
   ways.  Most of the methods described below obtain information from or
  -updates the request object.
  +update the request object.
   The perl version of the request object will be blessed into the B<Apache> 
   package, it is really a C<request_rec*> in disguise.
   
  @@ -337,7 +337,7 @@
   
   =item $r->the_request
   
  -The request line send by the client, handy for logging, etc.
  +The request line sent by the client, handy for logging, etc.
   
   =item $r->proxyreq
   
  @@ -420,7 +420,7 @@
   looping until it gets all of C<$bytes_to_read> or a timeout happens.
   
   In addition, this method sets a timeout before reading with
  -C<$r-E<gt>hard_timeout>
  +C<$r-E<gt>hard_timeout>.
   
   =item $r->get_remote_host
   
  @@ -470,11 +470,11 @@
   =item $c->remote_ip
   
   The dotted decimal representation of the remote client's IP address.
  -This is set by then server when the connection record is created so
  +This is set by the server when the connection record is created so
   is always defined.
   
   You can also set this value by providing an argument to it. This is
  -helpful if your server is behind a squid accelerator proxy which add
  +helpful if your server is behind a squid accelerator proxy which adds
   a HTTP_X_FORWARDED_FOR header.
   
   =item $c->local_addr