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 2014/05/29 14:37:55 UTC

svn commit: r1598278 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ChunkedOutputStream.java

Author: ggregory
Date: Thu May 29 12:37:55 2014
New Revision: 1598278

URL: http://svn.apache.org/r1598278
Log:
Javadoc.

Modified:
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ChunkedOutputStream.java

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ChunkedOutputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ChunkedOutputStream.java?rev=1598278&r1=1598277&r2=1598278&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ChunkedOutputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ChunkedOutputStream.java Thu May 29 12:37:55 2014
@@ -63,7 +63,7 @@ public class ChunkedOutputStream extends
     }
 
     /**
-     * writes the data buffer in chunks to the underlying stream
+     * Writes the data buffer in chunks to the underlying stream
      */
     @Override
     public void write(byte[] data, int srcOffset, int length) throws IOException {