You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2019/10/07 09:32:48 UTC

[tomcat] branch master updated: Fix typos (#208)

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/master by this push:
     new 5daacce  Fix typos (#208)
5daacce is described below

commit 5daacce2722bb8f895221d58dfc5cd7ca3b8f91e
Author: 康智冬 <wo...@gmail.com>
AuthorDate: Mon Oct 7 17:32:44 2019 +0800

    Fix typos (#208)
    
    Clean-up. Fix typos, remove obsolete comment about ServerFactory
---
 java/javax/servlet/ServletContextListener.java       |  2 +-
 java/javax/servlet/annotation/WebServlet.java        |  2 +-
 java/javax/servlet/http/HttpServlet.java             |  2 +-
 java/javax/servlet/http/HttpSessionBindingEvent.java |  2 +-
 java/javax/servlet/http/WebConnection.java           |  2 +-
 java/org/apache/catalina/Server.java                 |  4 ----
 .../catalina/ha/session/ClusterSessionListener.java  |  2 +-
 .../apache/catalina/manager/HTMLManagerServlet.java  |  4 ++--
 .../manager/host/HTMLHostManagerServlet.java         |  4 ++--
 .../apache/catalina/ssi/ResponseIncludeWrapper.java  |  6 +++---
 .../apache/catalina/startup/mbeans-descriptors.xml   |  2 +-
 .../catalina/storeconfig/StoreFactoryBase.java       |  2 +-
 .../catalina/tribes/group/ExtendedRpcCallback.java   |  2 +-
 .../apache/catalina/tribes/group/GroupChannel.java   |  2 +-
 java/org/apache/catalina/tribes/io/XByteBuffer.java  |  2 +-
 .../catalina/tribes/tipis/LocalStrings.properties    |  6 +++---
 .../org/apache/catalina/util/ExtensionValidator.java |  2 +-
 .../apache/catalina/valves/rewrite/RewriteRule.java  |  2 +-
 java/org/apache/coyote/Request.java                  |  2 +-
 java/org/apache/tomcat/dbcp/dbcp2/Jdbc41Bridge.java  | 20 ++++++++++----------
 java/org/apache/tomcat/util/buf/MessageBytes.java    |  4 ++--
 java/org/apache/tomcat/util/buf/UEncoder.java        |  2 +-
 .../tomcat/util/http/parser/LocalStrings.properties  |  2 +-
 .../coyote/http11/filters/TestGzipOutputFilter.java  |  2 +-
 webapps/docs/rewrite.xml                             |  2 +-
 .../WEB-INF/classes/websocket/drawboard/Room.java    |  2 +-
 webapps/examples/websocket/drawboard.xhtml           |  4 ++--
 27 files changed, 43 insertions(+), 47 deletions(-)

diff --git a/java/javax/servlet/ServletContextListener.java b/java/javax/servlet/ServletContextListener.java
index 2300aa7..7f926b4 100644
--- a/java/javax/servlet/ServletContextListener.java
+++ b/java/javax/servlet/ServletContextListener.java
@@ -42,7 +42,7 @@ public interface ServletContextListener extends EventListener {
 
     /**
      ** Notification that the servlet context is about to be shut down. All
-     * servlets and filters have been destroy()ed before any
+     * servlets and filters have been destroyed before any
      * ServletContextListeners are notified of context destruction.
      * The default implementation is a NO-OP.
      * @param sce Information about the ServletContext that was destroyed
diff --git a/java/javax/servlet/annotation/WebServlet.java b/java/javax/servlet/annotation/WebServlet.java
index 8e518b7..29d0b32 100644
--- a/java/javax/servlet/annotation/WebServlet.java
+++ b/java/javax/servlet/annotation/WebServlet.java
@@ -23,7 +23,7 @@ import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 
 /**
- * This annotation is used to declare the configuration of an
+ * This annotation is used to declare the configuration of a
  * {@link javax.servlet.Servlet}. <br>
  *
  * If the name attribute is not defined, the fully qualified name of the class
diff --git a/java/javax/servlet/http/HttpServlet.java b/java/javax/servlet/http/HttpServlet.java
index f28eac3..aedbee6 100644
--- a/java/javax/servlet/http/HttpServlet.java
+++ b/java/javax/servlet/http/HttpServlet.java
@@ -447,7 +447,7 @@ public abstract class HttpServlet extends GenericServlet {
 
     /**
      * Called by the server (via the <code>service</code> method)
-     * to allow a servlet to handle a OPTIONS request.
+     * to allow a servlet to handle an OPTIONS request.
      *
      * The OPTIONS request determines which HTTP methods
      * the server supports and
diff --git a/java/javax/servlet/http/HttpSessionBindingEvent.java b/java/javax/servlet/http/HttpSessionBindingEvent.java
index 91e5167..70138c7 100644
--- a/java/javax/servlet/http/HttpSessionBindingEvent.java
+++ b/java/javax/servlet/http/HttpSessionBindingEvent.java
@@ -20,7 +20,7 @@ package javax.servlet.http;
 /**
  * Events of this type are either sent to an object that implements
  * {@link HttpSessionBindingListener} when it is bound or unbound from a
- * session, or to a {@link HttpSessionAttributeListener} that has been
+ * session, or to an {@link HttpSessionAttributeListener} that has been
  * configured in the deployment descriptor when any attribute is bound, unbound
  * or replaced in a session.
  * <p>
diff --git a/java/javax/servlet/http/WebConnection.java b/java/javax/servlet/http/WebConnection.java
index e619e8c..a68a298 100644
--- a/java/javax/servlet/http/WebConnection.java
+++ b/java/javax/servlet/http/WebConnection.java
@@ -22,7 +22,7 @@ import javax.servlet.ServletInputStream;
 import javax.servlet.ServletOutputStream;
 
 /**
- * The interface used by a {@link HttpUpgradeHandler} to interact with an upgraded
+ * The interface used by an {@link HttpUpgradeHandler} to interact with an upgraded
  * HTTP connection.
  *
  * @since Servlet 3.1
diff --git a/java/org/apache/catalina/Server.java b/java/org/apache/catalina/Server.java
index 934f4da..0f0861c 100644
--- a/java/org/apache/catalina/Server.java
+++ b/java/org/apache/catalina/Server.java
@@ -40,10 +40,6 @@ import org.apache.catalina.startup.Catalina;
  * specified by the <code>port</code> property.  When a connection is accepted,
  * the first line is read and compared with the specified shutdown command.
  * If the command matches, shutdown of the server is initiated.
- * <p>
- * <strong>NOTE</strong> - The concrete implementation of this class should
- * register the (singleton) instance with the <code>ServerFactory</code>
- * class in its constructor(s).
  *
  * @author Craig R. McClanahan
  */
diff --git a/java/org/apache/catalina/ha/session/ClusterSessionListener.java b/java/org/apache/catalina/ha/session/ClusterSessionListener.java
index 8836854..68aa806 100644
--- a/java/org/apache/catalina/ha/session/ClusterSessionListener.java
+++ b/java/org/apache/catalina/ha/session/ClusterSessionListener.java
@@ -56,7 +56,7 @@ public class ClusterSessionListener extends ClusterListener {
         if (myobj instanceof SessionMessage) {
             SessionMessage msg = (SessionMessage) myobj;
             String ctxname = msg.getContextName();
-            //check if the message is a EVT_GET_ALL_SESSIONS,
+            //check if the message is an EVT_GET_ALL_SESSIONS,
             //if so, wait until we are fully started up
             Map<String,ClusterManager> managers = cluster.getManagers() ;
             if (ctxname == null) {
diff --git a/java/org/apache/catalina/manager/HTMLManagerServlet.java b/java/org/apache/catalina/manager/HTMLManagerServlet.java
index faab385..b757076 100644
--- a/java/org/apache/catalina/manager/HTMLManagerServlet.java
+++ b/java/org/apache/catalina/manager/HTMLManagerServlet.java
@@ -62,7 +62,7 @@ import org.apache.tomcat.util.security.Escape;
 * relaxed during testing.
 * <p>
 * The difference between the <code>ManagerServlet</code> and this
-* Servlet is that this Servlet prints out a HTML interface which
+* Servlet is that this Servlet prints out an HTML interface which
 * makes it easier to administrate.
 * <p>
 * However if you use a software that parses the output of
@@ -328,7 +328,7 @@ public final class HTMLManagerServlet extends ManagerServlet {
     }
 
     /**
-     * Render a HTML list of the currently active Contexts in our virtual host,
+     * Render an HTML list of the currently active Contexts in our virtual host,
      * and memory and server status information.
      *
      * @param request The request
diff --git a/java/org/apache/catalina/manager/host/HTMLHostManagerServlet.java b/java/org/apache/catalina/manager/host/HTMLHostManagerServlet.java
index bba3159..b9fbc20 100644
--- a/java/org/apache/catalina/manager/host/HTMLHostManagerServlet.java
+++ b/java/org/apache/catalina/manager/host/HTMLHostManagerServlet.java
@@ -43,7 +43,7 @@ import org.apache.tomcat.util.security.Escape;
 * this requirement can be relaxed during testing.
 * <p>
 * The difference between the <code>HostManagerServlet</code> and this
-* Servlet is that this Servlet prints out a HTML interface which
+* Servlet is that this Servlet prints out an HTML interface which
 * makes it easier to administrate.
 * <p>
 * However if you use a software that parses the output of
@@ -246,7 +246,7 @@ public final class HTMLHostManagerServlet extends HostManagerServlet {
 
 
     /**
-     * Render a HTML list of the currently active Contexts in our virtual host,
+     * Render an HTML list of the currently active Contexts in our virtual host,
      * and memory and server status information.
      *
      * @param request The request
diff --git a/java/org/apache/catalina/ssi/ResponseIncludeWrapper.java b/java/org/apache/catalina/ssi/ResponseIncludeWrapper.java
index fb09e77..8831712 100644
--- a/java/org/apache/catalina/ssi/ResponseIncludeWrapper.java
+++ b/java/org/apache/catalina/ssi/ResponseIncludeWrapper.java
@@ -81,7 +81,7 @@ public class ResponseIncludeWrapper extends HttpServletResponseWrapper {
 
 
     /**
-     * Return a printwriter, throws and exception if a OutputStream already
+     * Return a printwriter, throws and exception if an OutputStream already
      * been returned.
      *
      * @return a PrintWriter object
@@ -104,10 +104,10 @@ public class ResponseIncludeWrapper extends HttpServletResponseWrapper {
 
 
     /**
-     * Return a OutputStream, throws and exception if a printwriter already
+     * Return an OutputStream, throws and exception if a printwriter already
      * been returned.
      *
-     * @return a OutputStream object
+     * @return an OutputStream object
      * @exception java.io.IOException
      *                if the printwriter already been called
      */
diff --git a/java/org/apache/catalina/startup/mbeans-descriptors.xml b/java/org/apache/catalina/startup/mbeans-descriptors.xml
index ec0e94f..0991650 100644
--- a/java/org/apache/catalina/startup/mbeans-descriptors.xml
+++ b/java/org/apache/catalina/startup/mbeans-descriptors.xml
@@ -39,7 +39,7 @@
   </mbean>
 
   <mbean name="EngineConfig"
-         description="Startup event listener for a Engine that configures the properties of that Engine, and the associated defined contexts"
+         description="Startup event listener for an Engine that configures the properties of that Engine, and the associated defined contexts"
          domain="Catalina"
          group="Listener"
          type="org.apache.catalina.startup.EngineConfig">
diff --git a/java/org/apache/catalina/storeconfig/StoreFactoryBase.java b/java/org/apache/catalina/storeconfig/StoreFactoryBase.java
index ada8528..58e0cd2 100644
--- a/java/org/apache/catalina/storeconfig/StoreFactoryBase.java
+++ b/java/org/apache/catalina/storeconfig/StoreFactoryBase.java
@@ -176,7 +176,7 @@ public class StoreFactoryBase implements IStoreFactory {
     }
 
     /**
-     * Save a array of elements.
+     * Save an array of elements.
      * @param aWriter Current output writer
      * @param indent Indentation level
      * @param elements Array of elements
diff --git a/java/org/apache/catalina/tribes/group/ExtendedRpcCallback.java b/java/org/apache/catalina/tribes/group/ExtendedRpcCallback.java
index 6fb282d..015b479 100644
--- a/java/org/apache/catalina/tribes/group/ExtendedRpcCallback.java
+++ b/java/org/apache/catalina/tribes/group/ExtendedRpcCallback.java
@@ -20,7 +20,7 @@ import java.io.Serializable;
 
 import org.apache.catalina.tribes.Member;
 /**
- * Extension to the {@link RpcCallback} interface. Allows a RPC messenger to get a confirmation if the reply
+ * Extension to the {@link RpcCallback} interface. Allows an RPC messenger to get a confirmation if the reply
  * was sent successfully to the original sender.
  *
  */
diff --git a/java/org/apache/catalina/tribes/group/GroupChannel.java b/java/org/apache/catalina/tribes/group/GroupChannel.java
index 1583faa..64137c1 100644
--- a/java/org/apache/catalina/tribes/group/GroupChannel.java
+++ b/java/org/apache/catalina/tribes/group/GroupChannel.java
@@ -360,7 +360,7 @@ public class GroupChannel extends ChannelInterceptorBase
 
     /**
      * Sends a <code>NoRpcChannelReply</code> message to a member<br>
-     * This method gets invoked by the channel if a RPC message comes in
+     * This method gets invoked by the channel if an RPC message comes in
      * and no channel listener accepts the message. This avoids timeout
      * @param msg RpcMessage
      * @param destination Member - the destination for the reply
diff --git a/java/org/apache/catalina/tribes/io/XByteBuffer.java b/java/org/apache/catalina/tribes/io/XByteBuffer.java
index 08c1a21..c915552 100644
--- a/java/org/apache/catalina/tribes/io/XByteBuffer.java
+++ b/java/org/apache/catalina/tribes/io/XByteBuffer.java
@@ -463,7 +463,7 @@ public class XByteBuffer implements Serializable {
     }
 
     /**
-     * Converts an long to eight bytes.
+     * Converts a long to eight bytes.
      * @param n the long
      * @param b the byte buffer in which the integer will be placed
      * @param offset the offset in the byte array
diff --git a/java/org/apache/catalina/tribes/tipis/LocalStrings.properties b/java/org/apache/catalina/tribes/tipis/LocalStrings.properties
index 5aff1d7..604c31b 100644
--- a/java/org/apache/catalina/tribes/tipis/LocalStrings.properties
+++ b/java/org/apache/catalina/tribes/tipis/LocalStrings.properties
@@ -29,10 +29,10 @@ abstractReplicatedMap.relocate.complete=Relocation of map entries was complete i
 abstractReplicatedMap.transferState.noReplies=Transfer state, 0 replies, probably a timeout.
 abstractReplicatedMap.unable.deserialize.MapMessage=Unable to deserialize MapMessage.
 abstractReplicatedMap.unable.diffObject=Unable to diff object. Will replicate the entire object instead.
-abstractReplicatedMap.unable.get=Unable to replicate out data for a AbstractReplicatedMap.get operation
-abstractReplicatedMap.unable.put=Unable to replicate out data for a AbstractReplicatedMap.put operation
+abstractReplicatedMap.unable.get=Unable to replicate out data for an AbstractReplicatedMap.get operation
+abstractReplicatedMap.unable.put=Unable to replicate out data for an AbstractReplicatedMap.put operation
 abstractReplicatedMap.unable.relocate=Unable to relocate[{0}] to a new backup node
-abstractReplicatedMap.unable.remove=Unable to replicate out data for a AbstractReplicatedMap.remove operation
+abstractReplicatedMap.unable.remove=Unable to replicate out data for an AbstractReplicatedMap.remove operation
 abstractReplicatedMap.unable.replicate=Unable to replicate data.
 abstractReplicatedMap.unable.retrieve=Unable to retrieve remote object for key:[{0}]
 abstractReplicatedMap.unable.transferState=Unable to transfer AbstractReplicatedMap state.
diff --git a/java/org/apache/catalina/util/ExtensionValidator.java b/java/org/apache/catalina/util/ExtensionValidator.java
index 3ce787f..b495a52 100644
--- a/java/org/apache/catalina/util/ExtensionValidator.java
+++ b/java/org/apache/catalina/util/ExtensionValidator.java
@@ -185,7 +185,7 @@ public final class ExtensionValidator {
 
 
     /**
-     * Validates a <code>ArrayList</code> of <code>ManifestResource</code>
+     * Validates an <code>ArrayList</code> of <code>ManifestResource</code>
      * objects. This method requires an application name (which is the
      * context root of the application at runtime).
      *
diff --git a/java/org/apache/catalina/valves/rewrite/RewriteRule.java b/java/org/apache/catalina/valves/rewrite/RewriteRule.java
index 29f23d9..0b47cb2 100644
--- a/java/org/apache/catalina/valves/rewrite/RewriteRule.java
+++ b/java/org/apache/catalina/valves/rewrite/RewriteRule.java
@@ -299,7 +299,7 @@ public class RewriteRule {
 
     /**
      *  Prefix Substitution with http://thishost[:thisport]/ (which makes the
-     *  new URL a URI) to force a external redirection. If no code is given
+     *  new URL a URI) to force an external redirection. If no code is given
      *  an HTTP response of 302 (FOUND, previously MOVED TEMPORARILY) is used.
      *  If you want to  use other response codes in the range 300-399 just
      *  specify them as a number or use one of the following symbolic names:
diff --git a/java/org/apache/coyote/Request.java b/java/org/apache/coyote/Request.java
index 2752e5c..01b30bd 100644
--- a/java/org/apache/coyote/Request.java
+++ b/java/org/apache/coyote/Request.java
@@ -576,7 +576,7 @@ public final class Request {
 
     /**
      * Used to store private data. Thread data could be used instead - but
-     * if you have the req, getting/setting a note is just a array access, may
+     * if you have the req, getting/setting a note is just an array access, may
      * be faster than ThreadLocal for very frequent operations.
      *
      *  Example use:
diff --git a/java/org/apache/tomcat/dbcp/dbcp2/Jdbc41Bridge.java b/java/org/apache/tomcat/dbcp/dbcp2/Jdbc41Bridge.java
index 0cb852a..efd9dc5 100644
--- a/java/org/apache/tomcat/dbcp/dbcp2/Jdbc41Bridge.java
+++ b/java/org/apache/tomcat/dbcp/dbcp2/Jdbc41Bridge.java
@@ -49,7 +49,7 @@ import javax.sql.CommonDataSource;
 public class Jdbc41Bridge {
 
     /**
-     * Delegates to {@link Connection#abort(Executor)} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link Connection#abort(Executor)} without throwing an {@link AbstractMethodError}.
      * <p>
      * If the JDBC driver does not implement {@link Connection#abort(Executor)}, then call {@link Connection#close()}.
      * </p>
@@ -94,7 +94,7 @@ public class Jdbc41Bridge {
     }
 
     /**
-     * Delegates to {@link Connection#getNetworkTimeout()} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link Connection#getNetworkTimeout()} without throwing an {@link AbstractMethodError}.
      * <p>
      * If the JDBC driver does not implement {@link Connection#getNetworkTimeout()}, then return 0.
      * </p>
@@ -115,7 +115,7 @@ public class Jdbc41Bridge {
     }
 
     /**
-     * Delegates to {@link ResultSet#getObject(int, Class)} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link ResultSet#getObject(int, Class)} without throwing an {@link AbstractMethodError}.
      * <p>
      * If the JDBC driver does not implement {@link ResultSet#getObject(int, Class)}, then return 0.
      * </p>
@@ -215,7 +215,7 @@ public class Jdbc41Bridge {
     }
 
     /**
-     * Delegates to {@link ResultSet#getObject(String, Class)} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link ResultSet#getObject(String, Class)} without throwing an {@link AbstractMethodError}.
      *
      * @param <T>
      *            See {@link ResultSet#getObject(String, Class)}
@@ -343,7 +343,7 @@ public class Jdbc41Bridge {
     }
 
     /**
-     * Delegates to {@link Connection#getSchema()} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link Connection#getSchema()} without throwing an {@link AbstractMethodError}.
      * <p>
      * If the JDBC driver does not implement {@link Connection#getSchema()}, then return null.
      * </p>
@@ -365,7 +365,7 @@ public class Jdbc41Bridge {
     }
 
     /**
-     * Delegates to {@link Connection#setNetworkTimeout(Executor, int)} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link Connection#setNetworkTimeout(Executor, int)} without throwing an {@link AbstractMethodError}.
      * <p>
      * If the JDBC driver does not implement {@link Connection#setNetworkTimeout(Executor, int)}, then do nothing.
      * </p>
@@ -390,7 +390,7 @@ public class Jdbc41Bridge {
     }
 
     /**
-     * Delegates to {@link Connection#setSchema(String)} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link Connection#setSchema(String)} without throwing an {@link AbstractMethodError}.
      * <p>
      * If the JDBC driver does not implement {@link Connection#setSchema(String)}, then do nothing.
      * </p>
@@ -412,7 +412,7 @@ public class Jdbc41Bridge {
     }
 
     /**
-     * Delegates to {@link Statement#closeOnCompletion()} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link Statement#closeOnCompletion()} without throwing an {@link AbstractMethodError}.
      * <p>
      * If the JDBC driver does not implement {@link Statement#closeOnCompletion()}, then just check that the connection
      * is closed to then throw an SQLException.
@@ -435,7 +435,7 @@ public class Jdbc41Bridge {
     }
 
     /**
-     * Delegates to {@link Statement#isCloseOnCompletion()} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link Statement#isCloseOnCompletion()} without throwing an {@link AbstractMethodError}.
      * <p>
      * If the JDBC driver does not implement {@link Statement#isCloseOnCompletion()}, then just check that the
      * connection is closed to then throw an SQLException.
@@ -460,7 +460,7 @@ public class Jdbc41Bridge {
     }
 
     /**
-     * Delegates to {@link CommonDataSource#getParentLogger()} without throwing a {@link AbstractMethodError}.
+     * Delegates to {@link CommonDataSource#getParentLogger()} without throwing an {@link AbstractMethodError}.
      * <p>
      * If the JDBC driver does not implement {@link CommonDataSource#getParentLogger()}, then return null.
      * </p>
diff --git a/java/org/apache/tomcat/util/buf/MessageBytes.java b/java/org/apache/tomcat/util/buf/MessageBytes.java
index de4942f..64e87d0 100644
--- a/java/org/apache/tomcat/util/buf/MessageBytes.java
+++ b/java/org/apache/tomcat/util/buf/MessageBytes.java
@@ -499,7 +499,7 @@ public final class MessageBytes implements Cloneable, Serializable {
     private boolean hasLongValue=false;
 
     /**
-     * Set the buffer to the representation of an long.
+     * Set the buffer to the representation of a long.
      * @param l The long
      */
     public void setLong(long l) {
@@ -543,7 +543,7 @@ public final class MessageBytes implements Cloneable, Serializable {
 
     // Used for headers conversion
     /**
-     * Convert the buffer to an long, cache the value.
+     * Convert the buffer to a long, cache the value.
      * @return the long value
      */
     public long getLong() {
diff --git a/java/org/apache/tomcat/util/buf/UEncoder.java b/java/org/apache/tomcat/util/buf/UEncoder.java
index 0f73684..d52946c 100644
--- a/java/org/apache/tomcat/util/buf/UEncoder.java
+++ b/java/org/apache/tomcat/util/buf/UEncoder.java
@@ -21,7 +21,7 @@ import java.nio.charset.StandardCharsets;
 import java.util.BitSet;
 
 /**
- * Efficient implementation of an UTF-8 encoder.
+ * Efficient implementation of a UTF-8 encoder.
  * This class is not thread safe - you need one encoder per thread.
  * The encoder will save and recycle the internal objects, avoiding
  * garbage.
diff --git a/java/org/apache/tomcat/util/http/parser/LocalStrings.properties b/java/org/apache/tomcat/util/http/parser/LocalStrings.properties
index e387baf..ae02424 100644
--- a/java/org/apache/tomcat/util/http/parser/LocalStrings.properties
+++ b/java/org/apache/tomcat/util/http/parser/LocalStrings.properties
@@ -33,7 +33,7 @@ http.invalidCharacterDomain.atEnd=The character [{0}] is not valid at the end of
 http.invalidCharacterDomain.atStart=The character [{0}] is not valid at the start of a domain name.
 http.invalidHextet=Invalid hextet. A hextet must consist of 4 or less hex characters.
 http.invalidIpv4Location=The IPv6 address contains an embedded IPv4 address at an invalid location.
-http.invalidLeadingZero=An non-zero IPv4 octet may not contain a leading zero.
+http.invalidLeadingZero=A non-zero IPv4 octet may not contain a leading zero.
 http.invalidOctet=Invalid octet [{0}]. The valid range for IPv4 octets is 0 to 255.
 http.invalidSegmentEndState=The state [{0}] is not valid for the end of a segment.
 http.noClosingBracket=The IPv6 address is missing a closing bracket.
diff --git a/test/org/apache/coyote/http11/filters/TestGzipOutputFilter.java b/test/org/apache/coyote/http11/filters/TestGzipOutputFilter.java
index 5ddfaaa..a5aecac 100644
--- a/test/org/apache/coyote/http11/filters/TestGzipOutputFilter.java
+++ b/test/org/apache/coyote/http11/filters/TestGzipOutputFilter.java
@@ -34,7 +34,7 @@ public class TestGzipOutputFilter {
 
     /*
      * Test the interaction between gzip and flushing. The idea is to: 1. create
-     * a internal output buffer, response, and attach an active gzipoutputfilter
+     * an internal output buffer, response, and attach an active gzipoutputfilter
      * to the output buffer 2. set the output stream of the internal buffer to
      * be a ByteArrayOutputStream so we can inspect the output bytes 3. write a
      * chunk out using the gzipoutputfilter and invoke a flush on the
diff --git a/webapps/docs/rewrite.xml b/webapps/docs/rewrite.xml
index af656ab..0b810bf 100644
--- a/webapps/docs/rewrite.xml
+++ b/webapps/docs/rewrite.xml
@@ -690,7 +690,7 @@ cannot use <code>$N</code> in the substitution string!
           <strong>r</strong>edirect</span>)<br />
           Prefix <em>Substitution</em> with
           <code>http://thishost[:thisport]/</code> (which makes the
-          new URL a URI) to force a external redirection. If no
+          new URL a URI) to force an external redirection. If no
           <em>code</em> is given, an HTTP response of 302 (FOUND, previously MOVED
           TEMPORARILY) will be returned. If you want to use other response
           codes in the range 300-399, simply specify the appropriate number
diff --git a/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java b/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java
index 1d839fc..3fd0a9c 100644
--- a/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java
+++ b/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java
@@ -341,7 +341,7 @@ public final class Room {
      * Note that if a runnable recursively calls invokeAndWait() with another
      * runnable on this Room, it will not be executed recursively, but instead
      * cached until the original runnable is finished, to keep the behavior of
-     * using a Executor.
+     * using an Executor.
      *
      * @param task The task to be executed
      */
diff --git a/webapps/examples/websocket/drawboard.xhtml b/webapps/examples/websocket/drawboard.xhtml
index ff63366..82e494f 100644
--- a/webapps/examples/websocket/drawboard.xhtml
+++ b/webapps/examples/websocket/drawboard.xhtml
@@ -277,7 +277,7 @@
                     this.y2 = y2;
 
                     function ellipse(ctx, x, y, w, h) {
-                        /* Drawing a ellipse cannot be done directly in a
+                        /* Drawing an ellipse cannot be done directly in a
                          * CanvasRenderingContext2D - we need to use drawArc()
                          * in conjunction with scaling the context so that we
                          * get the needed proportion.
@@ -326,7 +326,7 @@
                                     ctx.strokeRect(x1, y1, x2 - x1, y2 - y1);
                                 }
                             } else if (type == 4) {
-                                // Draw a ellipse.
+                                // Draw an ellipse.
                                 ellipse(ctx, x1, y1, x2 - x1, y2 - y1);
                                 ctx.closePath();
                                 ctx.stroke();


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org