Javadoc: Fix format nit in code example

This commit is contained in:
Gary Gregory 2024-09-19 15:03:31 -04:00
parent 560a699978
commit dae9b1fa1b
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ import org.apache.commons.io.function.Uncheck;
* For those who like fluent APIs, parsers can be created using {@link CSVFormat#parse(java.io.Reader)} as a shortcut:
* </p>
* <pre>
* for(CSVRecord record : CSVFormat.EXCEL.parse(in)) {
* for (CSVRecord record : CSVFormat.EXCEL.parse(in)) {
* ...
* }
* </pre>