This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git


The following commit(s) were added to refs/heads/master by this push:
     new dae9b1fa Javadoc: Fix format nit in code example
     new decbfb3e Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-csv.git
dae9b1fa is described below

commit dae9b1fa1b57d712a4884dd7c0f80d9671ab0fe0
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Sep 19 15:03:31 2024 -0400

    Javadoc: Fix format nit in code example
---
 src/main/java/org/apache/commons/csv/CSVParser.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java 
b/src/main/java/org/apache/commons/csv/CSVParser.java
index 471a43c1..a2bc2307 100644
--- a/src/main/java/org/apache/commons/csv/CSVParser.java
+++ b/src/main/java/org/apache/commons/csv/CSVParser.java
@@ -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>

Reply via email to