You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2021/12/13 09:02:10 UTC

[commons-io] branch master updated: (doc) fix typos in AbstractByteArrayOutputStream.java

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

kinow 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 223a470  (doc) fix typos in AbstractByteArrayOutputStream.java
223a470 is described below

commit 223a4706ad9844f5d12f75477ec50274105f9c5c
Author: Glyceryl <jo...@qq.com>
AuthorDate: Mon Dec 13 13:38:52 2021 +0800

    (doc) fix typos in AbstractByteArrayOutputStream.java
---
 .../org/apache/commons/io/output/AbstractByteArrayOutputStream.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/output/AbstractByteArrayOutputStream.java b/src/main/java/org/apache/commons/io/output/AbstractByteArrayOutputStream.java
index c47cfa2..6842ca3 100644
--- a/src/main/java/org/apache/commons/io/output/AbstractByteArrayOutputStream.java
+++ b/src/main/java/org/apache/commons/io/output/AbstractByteArrayOutputStream.java
@@ -205,7 +205,7 @@ public abstract class AbstractByteArrayOutputStream extends OutputStream {
     }
 
     /**
-     * Gets the current contents of this byte stream as a Input Stream. The
+     * Gets the current contents of this byte stream as an Input Stream. The
      * returned stream is backed by buffers of {@code this} stream,
      * avoiding memory allocation and copy, thus saving space and time.<br>
      *
@@ -217,7 +217,7 @@ public abstract class AbstractByteArrayOutputStream extends OutputStream {
     public abstract InputStream toInputStream();
 
     /**
-     * Gets the current contents of this byte stream as a Input Stream. The
+     * Gets the current contents of this byte stream as an Input Stream. The
      * returned stream is backed by buffers of {@code this} stream,
      * avoiding memory allocation and copy, thus saving space and time.<br>
      *