diff --git a/pom.xml b/pom.xml index 3d3290ff..2ed591e3 100644 --- a/pom.xml +++ b/pom.xml @@ -337,7 +337,7 @@ CSV files of various types. - Noteable Markers + Notable Markers NOTE diff --git a/src/site/xdoc/mail-lists.xml b/src/site/xdoc/mail-lists.xml index 3648b98e..d234a0cf 100644 --- a/src/site/xdoc/mail-lists.xml +++ b/src/site/xdoc/mail-lists.xml @@ -152,7 +152,7 @@ limitations under the License. Commons Commits List

- Only for e-mails automatically generated by the source control sytem. + Only for e-mails automatically generated by the source control system.

Subscribe diff --git a/src/test/java/org/apache/commons/csv/CSVParserTest.java b/src/test/java/org/apache/commons/csv/CSVParserTest.java index 0d8dd312..6b0dfc32 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)) {