You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by fs...@apache.org on 2019/03/22 17:10:31 UTC

[tomcat] branch master updated: Correct doubled words

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

fschumacher 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 1c69b25  Correct doubled words
1c69b25 is described below

commit 1c69b2528790d40569f4b4b034c184ee21ccaea1
Author: Felix Schumacher <fs...@apache.org>
AuthorDate: Fri Mar 22 18:08:23 2019 +0100

    Correct doubled words
    
    These are a few places where the following script found duplicated word:
    
     $ grep -rP '\b([a-z]\w+)\s+\1\b' webapps/
---
 RELEASE-NOTES                                           | 2 +-
 webapps/docs/changelog.xml                              | 6 +++---
 webapps/examples/WEB-INF/classes/HelloWorldExample.java | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index a6ced8c..2377d4f 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -115,7 +115,7 @@ and putting them in the shared classloader instead (JARs should be put in the
 Security manager URLs:
 ======================
 In order to grant security permissions to JARs located inside the
-web application repository, use URLs of of the following format
+web application repository, use URLs of the following format
 in your policy file:
 
 file:${catalina.base}/webapps/examples/WEB-INF/lib/driver.jar
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 0f39d60..5c5331c 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -608,7 +608,7 @@
       <update>
         Add dns-ping support to enumerate cluster members. This is much simpler
         than getting the pod list but it does not indicate pod status.
-        Submitted by by Maxime Beck. (remm)
+        Submitted by Maxime Beck. (remm)
       </update>
       <fix>
         Never expire the local member from a Membership. (remm)
@@ -1678,7 +1678,7 @@
         Followup sync fix for NIO2 async IO blocking read/writes. (remm)
       </fix>
       <fix>
-        Log an error message if the AJP connector detects the the reverse proxy
+        Log an error message if the AJP connector detects that the reverse proxy
         is sending AJP messages that are too large for the configured
         <code>packetSize</code>. (markt)
       </fix>
@@ -3798,7 +3798,7 @@
     <changelog>
       <fix>
         Review those places where Tomcat re-encodes a URI or URI component and
-        ensure that that correct encoding (path differs from query string) is
+        ensure that the correct encoding (path differs from query string) is
         applied and that the encoding is applied consistently. (markt)
       </fix>
       <fix>
diff --git a/webapps/examples/WEB-INF/classes/HelloWorldExample.java b/webapps/examples/WEB-INF/classes/HelloWorldExample.java
index 1a5ea5a..4a75a4d 100644
--- a/webapps/examples/WEB-INF/classes/HelloWorldExample.java
+++ b/webapps/examples/WEB-INF/classes/HelloWorldExample.java
@@ -56,7 +56,7 @@ public class HelloWorldExample extends HttpServlet {
 
         // note that all links are created to be relative. this
         // ensures that we can move the web application that this
-        // servlet belongs to to a different place in the url
+        // servlet belongs to a different place in the url
         // tree and not have any harmful side effects.
 
         // XXX


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