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 3f93045 Fix spelling in comment.
3f93045 is described below
commit 3f930458033c169f77b319b2c1952577da9bca86
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 20 13:19:21 2020 -0500
Fix spelling in comment.
---
.../java/org/apache/commons/beanutils2/converters/ArrayConverter.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/commons/beanutils2/converters/ArrayConverter.java
b/src/main/java/org/apache/commons/beanutils2/converters/ArrayConverter.java
index 4d71c85..e291fc9 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/ArrayConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/ArrayConverter.java
@@ -112,7 +112,7 @@ import org.apache.commons.beanutils2.Converter;
*
* // Construct a "Matrix" Converter which converts arrays of integer
arrays using
* // the preceding ArrayConverter 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 used by the first ArrayConverter needs to be
added to the
* // "allowed characters" for this one.
* ArrayConverter matrixConverter = new ArrayConverter(int[][].class,
arrayConverter);