[tomcat] branch master updated: Fix comment typo

2021-02-01 Thread markt
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 7ed844c  Fix comment typo
7ed844c is described below

commit 7ed844c07eb4f90e2d92538be5b57824d780912d
Author: Mark Thomas 
AuthorDate: Mon Feb 1 10:19:32 2021 +

Fix comment typo
---
 java/org/apache/coyote/http2/Http2UpgradeHandler.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/org/apache/coyote/http2/Http2UpgradeHandler.java 
b/java/org/apache/coyote/http2/Http2UpgradeHandler.java
index 054f3bc..e5e0cf7 100644
--- a/java/org/apache/coyote/http2/Http2UpgradeHandler.java
+++ b/java/org/apache/coyote/http2/Http2UpgradeHandler.java
@@ -1227,7 +1227,7 @@ class Http2UpgradeHandler extends AbstractStream 
implements InternalHttpUpgradeH
 if (stream.isClosedFinal()) {
 // This stream went from IDLE to CLOSED and is likely to have
 // been created by the client as part of the priority tree.
-// Candidate for steo 3.
+// Candidate for step 3.
 candidatesStepThree.add(stream.getIdentifier());
 } else if (stream.getChildStreams().size() == 0) {
 // Prune it


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



[tomcat] branch master updated: Fix comment

2020-05-05 Thread markt
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 5be7aab  Fix comment
5be7aab is described below

commit 5be7aabfd478baab101d9037fbf772aa8e8fda2e
Author: Mark Thomas 
AuthorDate: Tue May 5 09:32:24 2020 +0100

Fix comment
---
 test/org/apache/coyote/http2/TestStreamProcessor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/org/apache/coyote/http2/TestStreamProcessor.java 
b/test/org/apache/coyote/http2/TestStreamProcessor.java
index e72be5f..6628d0f 100644
--- a/test/org/apache/coyote/http2/TestStreamProcessor.java
+++ b/test/org/apache/coyote/http2/TestStreamProcessor.java
@@ -239,7 +239,7 @@ public class TestStreamProcessor extends Http2TestBase {
 Tomcat.addServlet(ctxt, "compression", new CompressionServlet());
 ctxt.addServletMappingDecoded("/compression", "compression");
 
-// Enable compression for the LargeServlet
+// Enable compression
 Connector connector = tomcat.getConnector();
 Assert.assertTrue(connector.setProperty("compression", "on"));
 


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



[tomcat] branch master updated: fix comment

2019-09-25 Thread kfujino
This is an automated email from the ASF dual-hosted git repository.

kfujino 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 dd2faec  fix comment
dd2faec is described below

commit dd2faecf717b852de31e33f69c6be2844fbaea78
Author: KeiichiFujino 
AuthorDate: Wed Sep 25 15:16:14 2019 +0900

fix comment
---
 java/org/apache/catalina/tribes/membership/StaticMembershipService.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/java/org/apache/catalina/tribes/membership/StaticMembershipService.java 
b/java/org/apache/catalina/tribes/membership/StaticMembershipService.java
index d3d91a1..299b961 100644
--- a/java/org/apache/catalina/tribes/membership/StaticMembershipService.java
+++ b/java/org/apache/catalina/tribes/membership/StaticMembershipService.java
@@ -43,7 +43,7 @@ public class StaticMembershipService extends 
MembershipServiceBase
 private StaticMembershipProvider provider;
 
 /**
- * the ObjectName of this McastService.
+ * the ObjectName of this MembershipService.
  */
 private ObjectName oname = null;
 


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



[tomcat] branch master updated: Fix comment typo

2019-05-14 Thread markt
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 2de31a7  Fix comment typo
2de31a7 is described below

commit 2de31a7f7daedd96b88f12f73f182ebc6c1be5cc
Author: Mark Thomas 
AuthorDate: Tue May 14 14:13:41 2019 +0100

Fix comment typo
---
 java/org/apache/catalina/servlets/DefaultServlet.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/org/apache/catalina/servlets/DefaultServlet.java 
b/java/org/apache/catalina/servlets/DefaultServlet.java
index 3d15a4a..205d302 100644
--- a/java/org/apache/catalina/servlets/DefaultServlet.java
+++ b/java/org/apache/catalina/servlets/DefaultServlet.java
@@ -1235,7 +1235,7 @@ public class DefaultServlet extends HttpServlet {
 return null;
 }
 
-// Look for 4-bute BOMs
+// Look for 4-byte BOMs
 int b3 = bom[3] & 0xFF;
 if (b0 == 0x00 && b1 == 0x00 && b2 == 0xFE && b3 == 0xFF) {
 return Charset.forName("UTF32-BE");


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