mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-18 16:11:47 +00:00
Fix Javadocs typos
This commit is contained in:
parent
1521cc285d
commit
0051a83dcd
@ -1859,7 +1859,7 @@ public final class CSVFormat implements Serializable {
|
|||||||
* @param recordSeparator
|
* @param recordSeparator
|
||||||
* the record separator to use for output.
|
* the record separator to use for output.
|
||||||
*
|
*
|
||||||
* @return A new CSVFormat that is equal to this but with the the specified output record separator
|
* @return A new CSVFormat that is equal to this but with the specified output record separator
|
||||||
*/
|
*/
|
||||||
public CSVFormat withRecordSeparator(final char recordSeparator) {
|
public CSVFormat withRecordSeparator(final char recordSeparator) {
|
||||||
return withRecordSeparator(String.valueOf(recordSeparator));
|
return withRecordSeparator(String.valueOf(recordSeparator));
|
||||||
@ -1876,7 +1876,7 @@ public final class CSVFormat implements Serializable {
|
|||||||
* @param recordSeparator
|
* @param recordSeparator
|
||||||
* the record separator to use for output.
|
* the record separator to use for output.
|
||||||
*
|
*
|
||||||
* @return A new CSVFormat that is equal to this but with the the specified output record separator
|
* @return A new CSVFormat that is equal to this but with the specified output record separator
|
||||||
* @throws IllegalArgumentException
|
* @throws IllegalArgumentException
|
||||||
* if recordSeparator is none of CR, LF or CRLF
|
* if recordSeparator is none of CR, LF or CRLF
|
||||||
*/
|
*/
|
||||||
|
@ -326,7 +326,7 @@ final class Lexer implements Closeable {
|
|||||||
* @return the unescaped character (as an int) or {@link Constants#END_OF_STREAM} if char following the escape is
|
* @return the unescaped character (as an int) or {@link Constants#END_OF_STREAM} if char following the escape is
|
||||||
* invalid.
|
* invalid.
|
||||||
* @throws IOException if there is a problem reading the stream or the end of stream is detected:
|
* @throws IOException if there is a problem reading the stream or the end of stream is detected:
|
||||||
* the escape character is not allowed at end of strem
|
* the escape character is not allowed at end of stream
|
||||||
*/
|
*/
|
||||||
int readEscape() throws IOException {
|
int readEscape() throws IOException {
|
||||||
// the escape char has just been read (normally a backslash)
|
// the escape char has just been read (normally a backslash)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user