You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mr...@apache.org on 2020/01/28 21:24:55 UTC

svn commit: r1873272 - in /httpd/httpd/branches/2.4.x/docs/manual: developer/modguide.xml mod/mod_status.xml programs/configure.xml vhosts/fd-limits.xml

Author: mrumph
Date: Tue Jan 28 21:24:55 2020
New Revision: 1873272

URL: http://svn.apache.org/viewvc?rev=1873272&view=rev
Log:
Fixed some grammar errors in the docs.

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_status.xml
    httpd/httpd/branches/2.4.x/docs/manual/programs/configure.xml
    httpd/httpd/branches/2.4.x/docs/manual/vhosts/fd-limits.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml?rev=1873272&r1=1873271&r2=1873272&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/developer/modguide.xml Tue Jan 28 21:24:55 2020
@@ -180,7 +180,7 @@ the server based on the value of this ta
 </section>
 <section id="hook_declaration"><title>Hooking into httpd</title>
 <p>
-To begin with, we only want to create a simple handler, that replies to the 
+To begin with, we only want to create a simple handler that replies to the 
 client browser when a specific URL is requested, so we won't bother setting 
 up configuration handlers and directives just yet. Our initial module 
 definition will look like this:</p>
@@ -209,7 +209,7 @@ just want to hook onto the requests and
 is the name of a function we will create to manage how we hook onto the 
 request process. In this example module, the function has just one purpose; 
 To create a simple hook that gets called after all the rewrites, access 
-control etc has been handled. Thus, we will let the server know, that we want 
+control etc has been handled. Thus, we will let the server know that we want 
 to hook into its process as one of the last modules: 
 </p>
 

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_status.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_status.xml?rev=1873272&r1=1873271&r2=1873272&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_status.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_status.xml Tue Jan 28 21:24:55 2020
@@ -41,9 +41,9 @@ performance</description>
     <p>The details given are:</p>
 
     <ul>
-      <li>The number of worker serving requests</li>
+      <li>The number of workers serving requests</li>
 
-      <li>The number of idle worker</li>
+      <li>The number of idle workers</li>
 
       <li>The status of each worker, the number of requests that
       worker has performed and the total number of bytes served by

Modified: httpd/httpd/branches/2.4.x/docs/manual/programs/configure.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/programs/configure.xml?rev=1873272&r1=1873271&r2=1873272&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/programs/configure.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/programs/configure.xml Tue Jan 28 21:24:55 2020
@@ -274,7 +274,7 @@
           is <code>yes</code>.</dd>
 
         <dt><code>--enable-<var>MODULE</var>=shared</code></dt>
-        <dd>The corresponding module will be build as DSO module.
+        <dd>The corresponding module will be built as a DSO module.
             By default enabled modules are linked dynamically.</dd>
 
         <dt><code>--enable-<var>MODULE</var>=static</code></dt>

Modified: httpd/httpd/branches/2.4.x/docs/manual/vhosts/fd-limits.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/vhosts/fd-limits.xml?rev=1873272&r1=1873271&r2=1873272&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/vhosts/fd-limits.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/vhosts/fd-limits.xml Tue Jan 28 21:24:55 2020
@@ -64,9 +64,9 @@
       information on doing this.)</li>
 
       <li>
-        If you system falls into 1 or 2 (above), then increase the
+        If your system falls into 1 or 2 (above), then increase the
         file descriptor limit before starting Apache, using a
-        script like
+        script like:
 
         <example>
           <code>#!/bin/sh<br />
@@ -103,7 +103,7 @@ each line. (See <module>mod_log_config</
 more about customizing your log files.)</p>
 
 <p>When you wish to split your log file into its component parts (one
-file per virtual host) you can use the program <code><a
+file per virtual host), you can use the program <code><a
 href="../programs/other.html">split-logfile</a></code> to accomplish
 this. You'll find this program in the <code>support</code> directory
 of the Apache distribution.</p>