Fix typos / inconsistencies
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 6 Jan 2010 10:24:31 +0000 (10:24 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 6 Jan 2010 10:24:31 +0000 (10:24 +0000)
Rainer's review comments on r894580

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@896370 13f79535-47bb-0310-9956-ffa450edef68

conf/web.xml
java/org/apache/catalina/servlets/CGIServlet.java
webapps/docs/cgi-howto.xml

index ebb3fb0..3d271c4 100644 (file)
   <!--   debug                Debugging detail level for messages logged    -->
   <!--                        by this servlet.  [0]                         -->
   <!--                                                                      -->
-  <!--   executable           Name of the exectuable used to run the        -->
+  <!--   executable           Name of the executable used to run the        -->
   <!--                        script. [perl]                                -->
   <!--                                                                      -->
   <!--   parameterEncoding    Name of parameter encoding to be used with    -->
   <!--                        any) be passed to the CGI script? [false]     -->
   <!--                                                                      -->
   <!--   stderrTimeout        The time (in milliseconds) to wait for the    -->
-  <!--                        reading of stdErr to complete before          -->
+  <!--                        reading of stderr to complete before          -->
   <!--                        terminating the CGI process. [2000]           -->
 
 <!--
index 35ac047..060438b 100644 (file)
@@ -265,7 +265,7 @@ public final class CGIServlet extends HttpServlet {
         System.getProperty("file.encoding", "UTF-8");
 
     /**
-     * The time (in milliseconds) to wait for the reading of stdErr to complete
+     * The time (in milliseconds) to wait for the reading of stderr to complete
      * before terminating the CGI process.
      */
     private long stderrTimeout = 2000;
index ecffae1..b9b880a 100644 (file)
@@ -84,7 +84,7 @@ to be used with the GCI servlet. Default is
 variables (if any) be passed to the CGI script? Default is
 <code>false</code>.</li>
 <li><strong>stderrTimeout</strong> - The time (in milliseconds) to wait for
-the reading of stderr to complete before terminating the CGI process? Default
+the reading of stderr to complete before terminating the CGI process. Default
 is 2000.</li>
 </ul>
 </p>