]> granicus.if.org Git - apache/commitdiff
Be consistent with *s' usage. Thank you, the oatmeal.
authorIgor Galić <igalic@apache.org>
Wed, 11 Apr 2012 11:00:16 +0000 (11:00 +0000)
committerIgor Galić <igalic@apache.org>
Wed, 11 Apr 2012 11:00:16 +0000 (11:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1324697 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/misc/perf-tuning.xml
docs/manual/mod/mod_lbmethod_byrequests.xml
docs/manual/mod/mpmt_os2.xml

index c9630446cfd7caa6b6b4f55b15afd75cbd089c55..6e8977343b2a75b415ffd661e97b1de54de8c06c 100644 (file)
     </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
     <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>
index a9a718153b93956037951fe5c3e4daf50d29e1f1..41be7d0e7a75788b933d59cd603878b04ed48810 100644 (file)
@@ -46,7 +46,7 @@ provides the <code>byrequests</code> load balancing method..</p>
     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>
 
index 63a41290ef17250019305ebee2c133d433749520..e4f70e889084dcd621305c1fdb0a2b902efb83a5 100644 (file)
@@ -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>