Fix typos in site and test #53
This commit is contained in:
parent
b58168683d
commit
8ecd4657ef
2
pom.xml
2
pom.xml
|
@ -337,7 +337,7 @@ CSV files of various types.
|
||||||
</tags>
|
</tags>
|
||||||
</tagClass>
|
</tagClass>
|
||||||
<tagClass>
|
<tagClass>
|
||||||
<displayName>Noteable Markers</displayName>
|
<displayName>Notable Markers</displayName>
|
||||||
<tags>
|
<tags>
|
||||||
<tag>
|
<tag>
|
||||||
<matchString>NOTE</matchString>
|
<matchString>NOTE</matchString>
|
||||||
|
|
|
@ -152,7 +152,7 @@ limitations under the License.
|
||||||
<td>
|
<td>
|
||||||
<strong>Commons Commits List</strong>
|
<strong>Commons Commits List</strong>
|
||||||
<br /><br />
|
<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 />
|
<br /><br />
|
||||||
</td>
|
</td>
|
||||||
<td><a href="mailto:commits-subscribe@commons.apache.org">Subscribe</a></td>
|
<td><a href="mailto:commits-subscribe@commons.apache.org">Subscribe</a></td>
|
||||||
|
|
|
@ -162,7 +162,7 @@ public class CSVParserTest {
|
||||||
final String[][] res = { { "one", "two", "three" }, { "on\\\"e", "two" }, { "on\"e", "two" },
|
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", "tw\"o" }, { "one", "t\\,wo" }, // backslash in quotes only escapes a delimiter (",")
|
||||||
{ "one", "two", "th,ree" }, { "a\\\\" }, // 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 (",")
|
{ "a\\\\,b" } // backslash in quotes only escapes a delimiter (",")
|
||||||
};
|
};
|
||||||
try (final CSVParser parser = CSVParser.parse(code, CSVFormat.DEFAULT)) {
|
try (final CSVParser parser = CSVParser.parse(code, CSVFormat.DEFAULT)) {
|
||||||
|
|
Loading…
Reference in New Issue