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 a931b22 Javadoc nits.
a931b22 is described below
commit a931b223435e0ad2cd65d50153cdc071895ea958
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Apr 9 09:58:01 2019 -0400
Javadoc nits.
---
src/main/java/org/apache/commons/io/input/BoundedReader.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/io/input/BoundedReader.java
b/src/main/java/org/apache/commons/io/input/BoundedReader.java
index bd2c3be..467dd3d 100644
--- a/src/main/java/org/apache/commons/io/input/BoundedReader.java
+++ b/src/main/java/org/apache/commons/io/input/BoundedReader.java
@@ -23,12 +23,12 @@ import java.io.Reader;
/**
* A reader that imposes a limit to the number of characters that can be read
from
- * an underlying reader, returning eof when this limit is reached -regardless
of state of
+ * an underlying reader, returning EOF when this limit is reached, regardless
of state of
* underlying reader.
*
* <p>
* One use case is to avoid overrunning the readAheadLimit supplied to
- * java.io.Reader#mark(int), since reading too many characters removes the
+ * {@link java.io.Reader#mark(int)}, since reading too many characters removes
the
* ability to do a successful reset.
* </p>
*