You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ig...@apache.org on 2012/04/11 13:00:16 UTC

svn commit: r1324697 - in /httpd/httpd/trunk/docs/manual: misc/perf-tuning.xml mod/mod_lbmethod_byrequests.xml mod/mpmt_os2.xml

Author: igalic
Date: Wed Apr 11 11:00:16 2012
New Revision: 1324697

URL: http://svn.apache.org/viewvc?rev=1324697&view=rev
Log:
Be consistent with *s' usage. Thank you, the oatmeal.

Modified:
    httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml
    httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml
    httpd/httpd/trunk/docs/manual/mod/mpmt_os2.xml

Modified: httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml?rev=1324697&r1=1324696&r2=1324697&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml (original)
+++ httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml Wed Apr 11 11:00:16 2012
@@ -904,7 +904,7 @@
     </example>
 
     <p>The <code>-l</code> option tells truss to log the ID of the
-    LWP (lightweight process--Solaris's form of kernel-level thread)
+    LWP (lightweight process--Solaris' form of kernel-level thread)
     that invokes each system call.</p>
 
     <p>Other systems may have different system call tracing utilities
@@ -974,7 +974,7 @@
     <p>Next, the worker thread puts the connection to the client (file
     descriptor 9) in non-blocking mode. The <code>setsockopt(2)</code>
     and <code>getsockopt(2)</code> calls are a side-effect of how
-    Solaris's libc handles <code>fcntl(2)</code> on sockets.</p>
+    Solaris' libc handles <code>fcntl(2)</code> on sockets.</p>
 
     <example>
 <pre>/65:    read(9, " G E T   / 1 0 k . h t m".., 8000)     = 97</pre>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml?rev=1324697&r1=1324696&r2=1324697&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml Wed Apr 11 11:00:16 2012
@@ -46,7 +46,7 @@ provides the <code>byrequests</code> loa
     of the number of requests. It works as follows:</p>
 
     <p><dfn>lbfactor</dfn> is <em>how much we expect this worker
-    to work</em>, or <em>the workers's work quota</em>. This is
+    to work</em>, or <em>the workers' work quota</em>. This is
     a normalized value representing their "share" of the amount of
     work to be done.</p>
 

Modified: httpd/httpd/trunk/docs/manual/mod/mpmt_os2.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mpmt_os2.xml?rev=1324697&r1=1324696&r2=1324697&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mpmt_os2.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mpmt_os2.xml Wed Apr 11 11:00:16 2012
@@ -32,7 +32,7 @@
     <p>The Server consists of a main, parent process and a small, static
     number of child processes.</p>
 
-    <p>The parent process's job is to manage the child processes. This
+    <p>The parent process' job is to manage the child processes. This
     involves spawning children as required to ensure there are always
     <directive module="mpm_common">StartServers</directive> processes
     accepting connections.</p>