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 b8f638f Javadoc.
b8f638f is described below
commit b8f638fa691dc600248b9d810927d0491a46bc0f
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Aug 9 08:19:49 2019 -0400
Javadoc.
---
src/main/java/org/apache/commons/io/output/TeeOutputStream.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/io/output/TeeOutputStream.java
b/src/main/java/org/apache/commons/io/output/TeeOutputStream.java
index 673de9c..23fa696 100644
--- a/src/main/java/org/apache/commons/io/output/TeeOutputStream.java
+++ b/src/main/java/org/apache/commons/io/output/TeeOutputStream.java
@@ -20,7 +20,7 @@ import java.io.IOException;
import java.io.OutputStream;
/**
- * Classic splitter of OutputStream. Named after the Unix 'tee' command. It
allows a stream to be branched off so there
+ * Classic splitter of {@link OutputStream}. Named after the Unix 'tee'
command. It allows a stream to be branched off so there
* are now two streams.
*/
public class TeeOutputStream extends ProxyOutputStream {