You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2011/10/26 15:23:21 UTC

svn commit: r1189196 - /commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/utils/CountingStreamTest.java

Author: ggregory
Date: Wed Oct 26 13:23:21 2011
New Revision: 1189196

URL: http://svn.apache.org/viewvc?rev=1189196&view=rev
Log:
Fix typo in // comment.

Modified:
    commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/utils/CountingStreamTest.java

Modified: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/utils/CountingStreamTest.java
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/utils/CountingStreamTest.java?rev=1189196&r1=1189195&r2=1189196&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/utils/CountingStreamTest.java (original)
+++ commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/utils/CountingStreamTest.java Wed Oct 26 13:23:21 2011
@@ -29,7 +29,7 @@ public class CountingStreamTest {
     @Test
     public void output() throws Exception {
         // I don't like "test all at once" tests either, but the class
-        // is soo trivial
+        // is so trivial
         ByteArrayOutputStream bos = new ByteArrayOutputStream();
         CountingOutputStream o = new CountingOutputStream(bos);
         o.write(1);
@@ -49,7 +49,7 @@ public class CountingStreamTest {
     @Test
     public void input() throws Exception {
         // I don't like "test all at once" tests either, but the class
-        // is soo trivial
+        // is so trivial
         ByteArrayInputStream bis =
             new ByteArrayInputStream(new byte[] { 1, 2, 3, 4 });
         CountingInputStream i = new CountingInputStream(bis);