File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff 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 */
Original file line number Diff line number Diff line change 3333abstract 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 */
You can’t perform that action at this time.
0 commit comments