You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/03/22 20:11:13 UTC

svn commit: r1303992 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java

Author: sebb
Date: Thu Mar 22 19:11:13 2012
New Revision: 1303992

URL: http://svn.apache.org/viewvc?rev=1303992&view=rev
Log:
Javadoc - fix copy-paste error

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

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java?rev=1303992&r1=1303991&r2=1303992&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java Thu Mar 22 19:11:13 2012
@@ -2049,7 +2049,7 @@ public class IOUtils {
      * Read the requested number of characters or fail if there are not enough left.
      * <p>
      * This allows for the possibility that {@link Reader#read(char[], int, int)} may
-     * not skip as many characters as requested (most likely because of reaching EOF).
+     * not read as many characters as requested (most likely because of reaching EOF).
      * 
      * @param input where to read input from
      * @param buffer destination
@@ -2072,7 +2072,7 @@ public class IOUtils {
      * Read the requested number of characters or fail if there are not enough left.
      * <p>
      * This allows for the possibility that {@link Reader#read(char[], int, int)} may
-     * not skip as many characters as requested (most likely because of reaching EOF).
+     * not read as many characters as requested (most likely because of reaching EOF).
      * 
      * @param input where to read input from
      * @param buffer destination
@@ -2090,7 +2090,7 @@ public class IOUtils {
      * Read the requested number of bytes or fail if there are not enough left.
      * <p>
      * This allows for the possibility that {@link InputStream#read(byte[], int, int)} may
-     * not skip as many bytes as requested (most likely because of reaching EOF).
+     * not read as many bytes as requested (most likely because of reaching EOF).
      * 
      * @param input where to read input from
      * @param buffer destination
@@ -2113,7 +2113,7 @@ public class IOUtils {
      * Read the requested number of bytes or fail if there are not enough left.
      * <p>
      * This allows for the possibility that {@link InputStream#read(byte[], int, int)} may
-     * not skip as many bytes as requested (most likely because of reaching EOF).
+     * not read as many bytes as requested (most likely because of reaching EOF).
      * 
      * @param input where to read input from
      * @param buffer destination