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-beanutils.git
The following commit(s) were added to refs/heads/master by this push:
new ac30a23 Fix spelling in comment.
ac30a23 is described below
commit ac30a2379454918952ce15359a9f589b0182d4fc
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 20 13:19:41 2020 -0500
Fix spelling in comment.
---
.../apache/commons/beanutils2/converters/ArrayConverterTestCase.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/test/java/org/apache/commons/beanutils2/converters/ArrayConverterTestCase.java
b/src/test/java/org/apache/commons/beanutils2/converters/ArrayConverterTestCase.java
index 63dd65b..6417fb7 100644
---
a/src/test/java/org/apache/commons/beanutils2/converters/ArrayConverterTestCase.java
+++
b/src/test/java/org/apache/commons/beanutils2/converters/ArrayConverterTestCase.java
@@ -332,7 +332,7 @@ public class ArrayConverterTestCase extends TestCase {
// Test Date - create the Matrix!!
// Following String uses two delimiter:
// - comma (",") to separate individual numbers
- // - semi-colon (";") to separate lists of numbers
+ // - semicolon (";") to separate lists of numbers
final String matrixString = "11,12,13 ; 21,22,23 ; 31,32,33 ;
41,42,43";
final int[][] expected = new int[][] {new int[] {11, 12, 13},
new int[] {21, 22, 23},
@@ -349,7 +349,7 @@ public class ArrayConverterTestCase extends TestCase {
// Construct a "Matrix" Converter which converts arrays of integer
arrays using
// the first (int[]) Converter as the element Converter.
- // N.B. Uses a semi-colon (i.e. ";") as the delimiter to separate the
different sets of numbers.
+ // N.B. Uses a semicolon (i.e. ";") as the delimiter to separate the
different sets of numbers.
// Also the delimiter for the above array Converter needs to be
added to this
// array Converter's "allowed characters"
final ArrayConverter matrixConverter = new
ArrayConverter(int[][].class, arrayConverter);