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-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to