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-cli.git
The following commit(s) were added to refs/heads/master by this push: new f78fb5a Normalize to US English spelling. f78fb5a is described below commit f78fb5a99093852b0121edf4768bfaf931fa19f9 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Feb 8 14:02:02 2021 -0500 Normalize to US English spelling. --- src/main/java/org/apache/commons/cli/TypeHandler.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/cli/TypeHandler.java b/src/main/java/org/apache/commons/cli/TypeHandler.java index 2c2c713..5c67da4 100644 --- a/src/main/java/org/apache/commons/cli/TypeHandler.java +++ b/src/main/java/org/apache/commons/cli/TypeHandler.java @@ -40,7 +40,7 @@ public class TypeHandler * * @param str the command line value * @param obj the type of argument - * @return The instance of <code>obj</code> initialised with + * @return The instance of <code>obj</code> initialized with * the value of <code>str</code>. * @throws ParseException if the value creation for the given object type failed */ @@ -56,7 +56,7 @@ public class TypeHandler * @param str the command line value * @param clazz the class representing the type of argument * @param <T> type of argument - * @return The instance of <code>clazz</code> initialised with + * @return The instance of <code>clazz</code> initialized with * the value of <code>str</code>. * @throws ParseException if the value creation for the given class failed */ @@ -109,7 +109,7 @@ public class TypeHandler * Create an Object from the classname and empty constructor. * * @param classname the argument value - * @return the initialised object + * @return the initialized object * @throws ParseException if the class could not be found or the object could not be created */ public static Object createObject(final String classname) throws ParseException