Skip to content

Commit 5a30b37

Browse files
committed
Fix typo
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1512650 13f79535-47bb-0310-9956-ffa450edef68
1 parent 012146e commit 5a30b37

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ final class Lexer {
4949
private final char delimiter;
5050
private final char escape;
5151
private final char quoteChar;
52-
private final char commmentStart;
52+
private final char commentStart;
5353

5454
private final boolean ignoreSurroundingSpaces;
5555
private final boolean ignoreEmptyLines;
@@ -63,7 +63,7 @@ final class Lexer {
6363
this.delimiter = format.getDelimiter();
6464
this.escape = mapNullToDisabled(format.getEscape());
6565
this.quoteChar = mapNullToDisabled(format.getQuoteChar());
66-
this.commmentStart = mapNullToDisabled(format.getCommentStart());
66+
this.commentStart = mapNullToDisabled(format.getCommentStart());
6767
this.ignoreSurroundingSpaces = format.getIgnoreSurroundingSpaces();
6868
this.ignoreEmptyLines = format.getIgnoreEmptyLines();
6969
}
@@ -409,14 +409,14 @@ boolean isQuoteChar(final int ch) {
409409
}
410410

411411
boolean isCommentStart(final int ch) {
412-
return ch == commmentStart;
412+
return ch == commentStart;
413413
}
414414

415415
private boolean isMetaChar(final int ch) {
416416
return ch == delimiter ||
417417
ch == escape ||
418418
ch == quoteChar ||
419-
ch == commmentStart;
419+
ch == commentStart;
420420
}
421421

422422
/**

0 commit comments

Comments
 (0)