This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
     new 017e6442b Fix Javadoc
017e6442b is described below

commit 017e6442be37fd1430165e1b698d9f2c3a33b5aa
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Feb 16 22:39:32 2024 -0500

    Fix Javadoc
---
 src/main/java/org/apache/commons/io/IOUtils.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/IOUtils.java 
b/src/main/java/org/apache/commons/io/IOUtils.java
index e12a1b9c0..303ff764d 100644
--- a/src/main/java/org/apache/commons/io/IOUtils.java
+++ b/src/main/java/org/apache/commons/io/IOUtils.java
@@ -1505,7 +1505,7 @@ public class IOUtils {
      * @param output the {@link OutputStream} to write to
      * @param inputOffset : number of bytes to skip from input before copying
      * -ve values are ignored
-     * @param length : number of bytes to copy. -ve means all
+     * @param length number of bytes to copy. -ve means all
      * @return the number of bytes copied
      * @throws NullPointerException if the input or output is null
      * @throws IOException          if an I/O error occurs
@@ -1531,9 +1531,9 @@ public class IOUtils {
      *
      * @param input the {@link InputStream} to read
      * @param output the {@link OutputStream} to write to
-     * @param inputOffset : number of bytes to skip from input before copying
+     * @param inputOffset number of bytes to skip from input before copying
      * -ve values are ignored
-     * @param length : number of bytes to copy. -ve means all
+     * @param length number of bytes to copy. -ve means all
      * @param buffer the buffer to use for the copy
      * @return the number of bytes copied
      * @throws NullPointerException if the input or output is null
@@ -1625,9 +1625,9 @@ public class IOUtils {
      *
      * @param reader the {@link Reader} to read
      * @param writer the {@link Writer} to write to
-     * @param inputOffset : number of chars to skip from input before copying
+     * @param inputOffset number of chars to skip from input before copying
      * -ve values are ignored
-     * @param length : number of chars to copy. -ve means all
+     * @param length number of chars to copy. -ve means all
      * @return the number of chars copied
      * @throws NullPointerException if the input or output is null
      * @throws IOException          if an I/O error occurs
@@ -1648,9 +1648,9 @@ public class IOUtils {
      *
      * @param reader the {@link Reader} to read
      * @param writer the {@link Writer} to write to
-     * @param inputOffset : number of chars to skip from input before copying
+     * @param inputOffset number of chars to skip from input before copying
      * -ve values are ignored
-     * @param length : number of chars to copy. -ve means all
+     * @param length number of chars to copy. -ve means all
      * @param buffer the buffer to be used for the copy
      * @return the number of chars copied
      * @throws NullPointerException if the input or output is null

Reply via email to