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 2015/06/24 22:26:17 UTC

svn commit: r1687361 - /tomcat/trunk/java/org/apache/coyote/http2/AbstractStream.java

Author: markt
Date: Wed Jun 24 20:26:17 2015
New Revision: 1687361

URL: http://svn.apache.org/r1687361
Log:
Fix typo

Modified:
    tomcat/trunk/java/org/apache/coyote/http2/AbstractStream.java

Modified: tomcat/trunk/java/org/apache/coyote/http2/AbstractStream.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http2/AbstractStream.java?rev=1687361&r1=1687360&r2=1687361&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http2/AbstractStream.java (original)
+++ tomcat/trunk/java/org/apache/coyote/http2/AbstractStream.java Wed Jun 24 20:26:17 2015
@@ -131,7 +131,7 @@ abstract class AbstractStream {
 
     protected void decrementWindowSize(int decrement) {
         // No need for overflow protection here. Decrement can never be larger
-        // the Integer.MAX_VALUE and once windowSize does negative no further
+        // the Integer.MAX_VALUE and once windowSize goes negative no further
         // decrements are permitted
         synchronized (windowSizeLock) {
             windowSize -= decrement;



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