Skip to content

Commit ebd0f5e

Browse files
committed
Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1745011 13f79535-47bb-0310-9956-ffa450edef68
1 parent d6f7e20 commit ebd0f5e

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

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

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -864,15 +864,15 @@ public CSVPrinter print(final Appendable out) throws IOException {
864864
}
865865

866866
/**
867-
* Prints the string as the next value on the line. The value will be escaped or encapsulated as needed. Useful when
868-
* one wants to avoid creating CSVPrinters.
867+
* Prints the {@code value} as the next value on the line to {@code out}. The value will be escaped or encapsulated
868+
* as needed. Useful when one wants to avoid creating CSVPrinters.
869869
*
870870
* @param value
871-
* value to be output.
871+
* value to output.
872872
* @param out
873873
* where to print the value
874874
* @param newRecord
875-
* is this a new record
875+
* if this a new record
876876
* @throws IOException
877877
* If an I/O error occurs
878878
* @since 1.4
@@ -1063,7 +1063,6 @@ private void printAndQuote(final Object object, final CharSequence value, final
10631063
*
10641064
* @param out
10651065
* where to write
1066-
*
10671066
* @throws IOException
10681067
* If an I/O error occurs
10691068
* @since 1.4
@@ -1078,14 +1077,16 @@ public void println(final Appendable out) throws IOException {
10781077
}
10791078

10801079
/**
1081-
* Prints the given values a single record of delimiter separated values followed by the record separator.
1080+
* Prints the given {@code values} to {@code out} as a single record of delimiter separated values followed by the
1081+
* record separator.
10821082
*
10831083
* <p>
1084-
* The values will be quoted if needed. Quotes and newLine characters will be escaped. This method adds the record
1084+
* The values will be quoted if needed. Quotes and new-line characters will be escaped. This method adds the record
10851085
* separator to the output after printing the record, so there is no need to call {@link #println(Appendable)}.
10861086
* </p>
10871087
*
1088-
* @param out where to write
1088+
* @param out
1089+
* where to write
10891090
* @param values
10901091
* values to output.
10911092
* @throws IOException

0 commit comments

Comments
 (0)