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 386e6e7c Javadoc
386e6e7c is described below

commit 386e6e7cc1e5ff2a05a4d46b763cdae22460c39c
Author: Gary Gregory <garydgreg...@users.noreply.github.com>
AuthorDate: Wed Aug 30 09:09:27 2023 -0400

    Javadoc
---
 src/main/java/org/apache/commons/csv/package-info.java | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/main/java/org/apache/commons/csv/package-info.java 
b/src/main/java/org/apache/commons/csv/package-info.java
index 29e7fef6..023096f6 100644
--- a/src/main/java/org/apache/commons/csv/package-info.java
+++ b/src/main/java/org/apache/commons/csv/package-info.java
@@ -18,14 +18,14 @@
 /**
  * Apache Commons CSV Format Support.
  *
- * <p>CSV are widely used as interfaces to legacy systems or manual 
data-imports.
+ * <p>CSV are widely used as interfaces to legacy systems or manual data 
imports.
  *    CSV stands for "Comma Separated Values" (or sometimes "Character 
Separated
  *    Values"). The CSV data format is defined in
  *    <a href="http://tools.ietf.org/html/rfc4180"; target="_blank">RFC 4180</a>
  *    but many dialects exist.</p>
  *
  * <p>Common to all file dialects is its basic structure: The CSV data-format
- *    is record oriented, whereas each record starts on a new textual line. A
+ *    is record-oriented, whereas each record starts on a new textual line. A
  *    record is build of a list of values. Keep in mind that not all records
  *    must have an equal number of values:</p>
  * <pre>
@@ -36,28 +36,28 @@
  * <p>The following list contains the CSV aspects the Commons CSV parser 
supports:</p>
  * <dl>
  *   <dt>Separators (for lines)</dt>
- *   <dd>The record separators are hardcoded and cannot be changed. The must 
be '\r', '\n' or '\r\n'.</dd>
+ *   <dd>The record separators are hardcoded and cannot be changed. The must 
be '\r', '\n', or '\r\n'.</dd>
  *
  *   <dt>Delimiter (for values)</dt>
  *   <dd>The delimiter for values is freely configurable (default ',').</dd>
  *
  *   <dt>Comments</dt>
- *   <dd>Some CSV-dialects support a simple comment syntax. A comment is a 
record
+ *   <dd>Some CSV dialects support a simple comment syntax. A comment is a 
record
  *       which must start with a designated character (the commentStarter). A 
record
- *       of this kind is treated as comment and gets removed from the input 
(default none)</dd>
+ *       of this kind is treated as a comment and gets removed from the input 
(default none)</dd>
  *
  *   <dt>Encapsulator</dt>
  *  <dd>Two encapsulator characters (default '"') are used to enclose -&gt; 
complex values.</dd>
  *
  *   <dt>Simple values</dt>
- *   <dd>A simple value consist of all characters (except the delimiter) until
- *       (but not including) the next delimiter or a record-terminator. 
Optionally
+ *   <dd>A simple value consists of all characters (except the delimiter) until
+ *       (but not including) the next delimiter or a record terminator. 
Optionally
  *       all surrounding whitespaces of a simple value can be ignored 
(default: true).</dd>
  *
  *   <dt>Complex values</dt>
  *   <dd>Complex values are encapsulated within a pair of the defined 
encapsulator characters.
  *       The encapsulator itself must be escaped or doubled when used inside 
complex values.
- *       Complex values preserve all kind of formatting (including newlines 
-&gt; multiline-values)</dd>
+ *       Complex values preserve all kinds of formatting (including newlines 
-&gt; multiline-values)</dd>
  *
  *  <dt>Empty line skipping</dt>
  *   <dd>Optionally empty lines in CSV files can be skipped.

Reply via email to