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-csv.git
The following commit(s) were added to refs/heads/master by this push:
new 9de125e Javadoc: Close HTML tags.
9de125e is described below
commit 9de125e4f1ea6f86f5c625517d474c24eabab3ec
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Jul 5 16:39:58 2021 -0400
Javadoc: Close HTML tags.
---
src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
b/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
index d76464b..b4b451f 100644
--- a/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
+++ b/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
@@ -186,9 +186,11 @@ final class ExtendedBufferedReader extends BufferedReader {
* Calls {@link BufferedReader#readLine()} which drops the line
terminator(s). This method should only be called
* when processing a comment, otherwise information can be lost.
* <p>
- * Increments {@link #eolCounter}
+ * Increments {@link #eolCounter}.
+ * </p>
* <p>
- * Sets {@link #lastChar} to {@link Constants#END_OF_STREAM} at EOF,
otherwise to LF
+ * Sets {@link #lastChar} to {@link Constants#END_OF_STREAM} at EOF,
otherwise to LF.
+ * </p>
*
* @return the line that was read, or null if reached EOF.
*/