Fix typos in site and test #53

This commit is contained in:
Chen 2019-12-30 21:43:55 +08:00 committed by Gary Gregory
parent b58168683d
commit 8ecd4657ef
3 changed files with 3 additions and 3 deletions

View File

@ -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>

View File

@ -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-subscribe@commons.apache.org">Subscribe</a></td>

View File

@ -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)) {