Author: markt Date: Tue Nov 4 14:49:02 2014 New Revision: 1636594 URL: http://svn.apache.org/r1636594 Log: Fix comment typos
Modified: tomcat/trunk/test/org/apache/coyote/http11/TestGzipOutputFilter.java Modified: tomcat/trunk/test/org/apache/coyote/http11/TestGzipOutputFilter.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/coyote/http11/TestGzipOutputFilter.java?rev=1636594&r1=1636593&r2=1636594&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/coyote/http11/TestGzipOutputFilter.java (original) +++ tomcat/trunk/test/org/apache/coyote/http11/TestGzipOutputFilter.java Tue Nov 4 14:49:02 2014 @@ -35,7 +35,7 @@ import org.apache.tomcat.util.buf.ByteCh public class TestGzipOutputFilter { /* - * Test the interaction betwen gzip and flushing. The idea is to: 1. create + * Test the interaction between gzip and flushing. The idea is to: 1. create * a 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 @@ -75,7 +75,7 @@ public class TestGzipOutputFilter { // out (flushed) byte[] dataFound = bos.toByteArray(); - // find out what's expected by wrting to GZIPOutputStream and close it + // find out what's expected by writing to GZIPOutputStream and close it // (to force flushing) ByteArrayOutputStream gbos = new ByteArrayOutputStream(1024); GZIPOutputStream gos = new GZIPOutputStream(gbos); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org