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 8ecd465  Fix typos in site and test #53
8ecd465 is described below

commit 8ecd4657efe32f37f6b2524f3b76444b22750a37
Author: Chen <50514813+dot...@users.noreply.github.com>
AuthorDate: Mon Dec 30 21:43:55 2019 +0800

    Fix typos in site and test #53
---
 pom.xml                                                 | 2 +-
 src/site/xdoc/mail-lists.xml                            | 2 +-
 src/test/java/org/apache/commons/csv/CSVParserTest.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3d3290f..2ed591e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -337,7 +337,7 @@ CSV files of various types.
                 </tags>
               </tagClass>
               <tagClass>
-                <displayName>Noteable Markers</displayName>
+                <displayName>Notable Markers</displayName>
                 <tags>
                   <tag>
                     <matchString>NOTE</matchString>
diff --git a/src/site/xdoc/mail-lists.xml b/src/site/xdoc/mail-lists.xml
index 3648b98..d234a0c 100644
--- a/src/site/xdoc/mail-lists.xml
+++ b/src/site/xdoc/mail-lists.xml
@@ -152,7 +152,7 @@ limitations under the License.
           <td>
             <strong>Commons Commits List</strong>
             <br /><br />
-            Only for e-mails automatically generated by the <a 
href="scm.html">source control</a> sytem.
+            Only for e-mails automatically generated by the <a 
href="scm.html">source control</a> system.
             <br /><br />
           </td>
           <td><a 
href="mailto:commits-subscr...@commons.apache.org";>Subscribe</a></td>
diff --git a/src/test/java/org/apache/commons/csv/CSVParserTest.java 
b/src/test/java/org/apache/commons/csv/CSVParserTest.java
index 0d8dd31..6b0dfc3 100644
--- a/src/test/java/org/apache/commons/csv/CSVParserTest.java
+++ b/src/test/java/org/apache/commons/csv/CSVParserTest.java
@@ -162,7 +162,7 @@ public class CSVParserTest {
         final String[][] res = { { "one", "two", "three" }, { "on\\\"e", "two" 
}, { "on\"e", "two" },
                 { "one", "tw\"o" }, { "one", "t\\,wo" }, // backslash in 
quotes only escapes a delimiter (",")
                 { "one", "two", "th,ree" }, { "a\\\\" }, // backslash in 
quotes only escapes a delimiter (",")
-                { "a\\", "b" }, // a backslash must be returnd
+                { "a\\", "b" }, // a backslash must be returned
                 { "a\\\\,b" } // backslash in quotes only escapes a delimiter 
(",")
         };
         try (final CSVParser parser = CSVParser.parse(code, 
CSVFormat.DEFAULT)) {

Reply via email to