Skip to content

Commit 53f15f4

Browse files
committed
Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1398014 13f79535-47bb-0310-9956-ffa450edef68
1 parent 2ff847e commit 53f15f4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ public String getLineSeparator() {
449449
* Returns a copy of this format using the specified output line separator.
450450
*
451451
* @param lineSeparator
452-
* the line separator to be used for output.
452+
* the line separator to use for output.
453453
*
454454
* @return A copy of this format using the specified output line separator
455455
*/
@@ -462,7 +462,7 @@ public CSVFormat withLineSeparator(final char lineSeparator) {
462462
* Returns a copy of this format using the specified output line separator.
463463
*
464464
* @param lineSeparator
465-
* the line separator to be used for output.
465+
* the line separator to use for output.
466466
*
467467
* @return A copy of this format using the specified output line separator
468468
*/
@@ -475,7 +475,7 @@ public CSVFormat withLineSeparator(final String lineSeparator) {
475475
* Returns a copy of this format using the specified output quote policy.
476476
*
477477
* @param quotePolicy
478-
* the quote policy to be used for output.
478+
* the quote policy to use for output.
479479
*
480480
* @return A copy of this format using the specified output line separator
481481
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
abstract class Lexer {
3434

3535
/**
36-
* Constant char to be used for disabling comments, escapes and encapsulation. The value -2 is used because it
36+
* Constant char to use for disabling comments, escapes and encapsulation. The value -2 is used because it
3737
* won't be confused with an EOF signal (-1), and because the Unicode value {@code FFFE} would be encoded as two chars
3838
* (using surrogates) and thus there should never be a collision with a real text char.
3939
*/

0 commit comments

Comments
 (0)