Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit 8ecd465

Browse files
dota17garydgregory
authored andcommitted
Fix typos in site and test apache#53
1 parent b581686 commit 8ecd465

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ CSV files of various types.
337337
</tags>
338338
</tagClass>
339339
<tagClass>
340-
<displayName>Noteable Markers</displayName>
340+
<displayName>Notable Markers</displayName>
341341
<tags>
342342
<tag>
343343
<matchString>NOTE</matchString>

src/site/xdoc/mail-lists.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ limitations under the License.
152152
<td>
153153
<strong>Commons Commits List</strong>
154154
<br /><br />
155-
Only for e-mails automatically generated by the <a href="scm.html">source control</a> sytem.
155+
Only for e-mails automatically generated by the <a href="scm.html">source control</a> system.
156156
<br /><br />
157157
</td>
158158
<td><a href="mailto:commits-subscribe@commons.apache.org">Subscribe</a></td>

src/test/java/org/apache/commons/csv/CSVParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public void testBackslashEscapingOld() throws IOException {
162162
final String[][] res = { { "one", "two", "three" }, { "on\\\"e", "two" }, { "on\"e", "two" },
163163
{ "one", "tw\"o" }, { "one", "t\\,wo" }, // backslash in quotes only escapes a delimiter (",")
164164
{ "one", "two", "th,ree" }, { "a\\\\" }, // backslash in quotes only escapes a delimiter (",")
165-
{ "a\\", "b" }, // a backslash must be returnd
165+
{ "a\\", "b" }, // a backslash must be returned
166166
{ "a\\\\,b" } // backslash in quotes only escapes a delimiter (",")
167167
};
168168
try (final CSVParser parser = CSVParser.parse(code, CSVFormat.DEFAULT)) {

0 commit comments

Comments
 (0)