git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1398014 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-10-14 05:04:21 +00:00
parent 2ff847ea91
commit 53f15f420b
2 changed files with 4 additions and 4 deletions

View File

@ -449,7 +449,7 @@ public class CSVFormat implements Serializable {
* Returns a copy of this format using the specified output line separator.
*
* @param lineSeparator
* the line separator to be used for output.
* the line separator to use for output.
*
* @return A copy of this format using the specified output line separator
*/
@ -462,7 +462,7 @@ public class CSVFormat implements Serializable {
* Returns a copy of this format using the specified output line separator.
*
* @param lineSeparator
* the line separator to be used for output.
* the line separator to use for output.
*
* @return A copy of this format using the specified output line separator
*/
@ -475,7 +475,7 @@ public class CSVFormat implements Serializable {
* Returns a copy of this format using the specified output quote policy.
*
* @param quotePolicy
* the quote policy to be used for output.
* the quote policy to use for output.
*
* @return A copy of this format using the specified output line separator
*/

View File

@ -33,7 +33,7 @@ import java.io.IOException;
abstract class Lexer {
/**
* Constant char to be used for disabling comments, escapes and encapsulation. The value -2 is used because it
* Constant char to use for disabling comments, escapes and encapsulation. The value -2 is used because it
* won't be confused with an EOF signal (-1), and because the Unicode value {@code FFFE} would be encoded as two chars
* (using surrogates) and thus there should never be a collision with a real text char.
*/