Skip to content

Commit 38381d9

Browse files
committed
Javadoc
1 parent 65382ca commit 38381d9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/org/apache/commons/csv/Constants.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ final class Constants {
3737

3838
static final char CR = '\r';
3939

40-
/** RFC 4180 defines line breaks as CRLF */
40+
/** RFC 4180 defines line breaks as CRLF. */
4141
static final String CRLF = "\r\n";
4242

43-
static final Character DOUBLE_QUOTE_CHAR = Character.valueOf('"'); // Explicit (un)boxing is intentional
43+
static final Character DOUBLE_QUOTE_CHAR = Character.valueOf('"'); // Explicit (un)boxing is intentional.
4444

4545
static final String EMPTY = "";
4646

@@ -67,7 +67,7 @@ final class Constants {
6767

6868
static final char PIPE = '|';
6969

70-
/** ASCII record separator */
70+
/** ASCII record separator. */
7171
static final char RS = 30;
7272

7373
static final char SP = ' ';
@@ -76,10 +76,10 @@ final class Constants {
7676

7777
static final char TAB = '\t';
7878

79-
/** Undefined state for the lookahead char */
79+
/** Undefined state for the lookahead char. */
8080
static final int UNDEFINED = -2;
8181

82-
/** ASCII unit separator */
82+
/** ASCII unit separator. */
8383
static final char US = 31;
8484

8585
/** No instances. */

0 commit comments

Comments
 (0)