Skip to content

Commit 9fc2f8f

Browse files
committed
Javadoc
1 parent cf393fc commit 9fc2f8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ public void printRecords(final Object... values) throws IOException {
436436
* Prints all the objects in the given JDBC result set.
437437
* <p>
438438
* You can use {@link CSVFormat.Builder#setMaxRows(long)} to limit how many rows a result set produces. This is most useful when you cannot limit rows
439-
* through {@link Statement#setLargeMaxRows(long)}.
439+
* through {@link Statement#setLargeMaxRows(long)} or {@link Statement#setMaxRows(int)}.
440440
* </p>
441441
*
442442
* @param resultSet The values to print.
@@ -468,7 +468,7 @@ public void printRecords(final ResultSet resultSet) throws SQLException, IOExcep
468468
* Prints all the objects with metadata in the given JDBC result set based on the header boolean.
469469
* <p>
470470
* You can use {@link CSVFormat.Builder#setMaxRows(long)} to limit how many rows a result set produces. This is most useful when you cannot limit rows
471-
* through {@link Statement#setLargeMaxRows(long)}.
471+
* through {@link Statement#setLargeMaxRows(long)} or {@link Statement#setMaxRows(int)}.
472472
* </p>
473473
*
474474
* @param resultSet source of row data.

0 commit comments

Comments
 (0)