Skip to content

Commit bb31685

Browse files
committed
Javadocs.
1 parent 59e1f79 commit bb31685

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -860,8 +860,8 @@ public CSVParser parse(final Reader in) throws IOException {
860860
* </p>
861861
*
862862
* @param out
863-
* the output
864-
* @return a printer to an output
863+
* the output.
864+
* @return a printer to an output.
865865
* @throws IOException
866866
* thrown if the optional header cannot be printed.
867867
*/
@@ -877,10 +877,10 @@ public CSVPrinter print(final Appendable out) throws IOException {
877877
* </p>
878878
*
879879
* @param out
880-
* the output
881-
* @param charset
882-
* A charset
883-
* @return a printer to an output
880+
* the output.
881+
* @param charset
882+
* A charset.
883+
* @return a printer to an output.
884884
* @throws IOException
885885
* thrown if the optional header cannot be printed.
886886
* @since 1.5
@@ -899,10 +899,10 @@ public CSVPrinter print(final File out, Charset charset) throws IOException {
899899
* </p>
900900
*
901901
* @param out
902-
* the output
902+
* the output.
903903
* @param charset
904-
* A charset
905-
* @return a printer to an output
904+
* A charset.
905+
* @return a printer to an output.
906906
* @throws IOException
907907
* thrown if the optional header cannot be printed.
908908
* @since 1.5
@@ -918,11 +918,11 @@ public CSVPrinter print(final Path out, Charset charset) throws IOException {
918918
* @param value
919919
* value to output.
920920
* @param out
921-
* where to print the value
921+
* where to print the value.
922922
* @param newRecord
923-
* if this a new record
923+
* if this a new record.
924924
* @throws IOException
925-
* If an I/O error occurs
925+
* If an I/O error occurs.
926926
* @since 1.4
927927
*/
928928
public void print(final Object value, final Appendable out, final boolean newRecord) throws IOException {
@@ -1134,11 +1134,11 @@ public void println(final Appendable out) throws IOException {
11341134
* </p>
11351135
*
11361136
* @param out
1137-
* where to write
1137+
* where to write.
11381138
* @param values
11391139
* values to output.
11401140
* @throws IOException
1141-
* If an I/O error occurs
1141+
* If an I/O error occurs.
11421142
* @since 1.4
11431143
*/
11441144
public void printRecord(final Appendable out, final Object... values) throws IOException {

0 commit comments

Comments
 (0)