You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/10/22 22:52:12 UTC

[commons-beanutils] branch master updated: Fixed spelling mistakes in Javadoc (#11)

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 153f340  Fixed spelling mistakes in Javadoc (#11)
153f340 is described below

commit 153f340d69e11f8bf4753105a7578ba65b618450
Author: Melloware <me...@gmail.com>
AuthorDate: Tue Oct 22 18:52:05 2019 -0400

    Fixed spelling mistakes in Javadoc (#11)
---
 .../apache/commons/beanutils2/BasicDynaClass.java  |  4 +-
 .../beanutils2/BeanAccessLanguageException.java    |  4 +-
 .../BeanPropertyValueChangeConsumer.java           | 18 +++----
 .../BeanPropertyValueEqualsPredicate.java          | 20 ++++----
 .../beanutils2/BeanToPropertyValueTransformer.java | 18 +++----
 .../org/apache/commons/beanutils2/BeanUtils.java   |  2 +-
 .../apache/commons/beanutils2/BeanUtilsBean.java   |  4 +-
 .../commons/beanutils2/ConstructorUtils.java       | 10 ++--
 .../beanutils2/ContextClassLoaderLocal.java        |  2 +-
 .../apache/commons/beanutils2/DynaProperty.java    |  4 +-
 .../apache/commons/beanutils2/LazyDynaBean.java    |  4 +-
 .../apache/commons/beanutils2/LazyDynaClass.java   |  6 +--
 .../apache/commons/beanutils2/LazyDynaList.java    |  2 +-
 .../org/apache/commons/beanutils2/LazyDynaMap.java |  6 +--
 .../org/apache/commons/beanutils2/MethodUtils.java | 24 ++++-----
 .../commons/beanutils2/NestedNullException.java    |  2 +-
 .../apache/commons/beanutils2/PropertyUtils.java   | 40 +++++++--------
 .../commons/beanutils2/PropertyUtilsBean.java      | 58 +++++++++++-----------
 .../commons/beanutils2/ResultSetDynaClass.java     |  2 +-
 .../apache/commons/beanutils2/WeakFastHashMap.java |  4 +-
 .../beanutils2/converters/AbstractConverter.java   |  4 +-
 .../beanutils2/converters/ArrayConverter.java      |  8 +--
 .../beanutils2/converters/CharacterConverter.java  |  2 +-
 .../beanutils2/converters/ClassConverter.java      |  2 +-
 .../beanutils2/converters/DateTimeConverter.java   |  4 +-
 .../beanutils2/converters/FileConverter.java       |  2 +-
 .../beanutils2/converters/NumberConverter.java     |  2 +-
 .../beanutils2/converters/StringConverter.java     |  2 +-
 .../beanutils2/converters/URLConverter.java        |  2 +-
 .../beanutils2/expression/DefaultResolver.java     |  8 +--
 .../commons/beanutils2/expression/Resolver.java    |  8 +--
 .../beanutils2/locale/BaseLocaleConverter.java     | 20 ++++----
 .../commons/beanutils2/locale/LocaleBeanUtils.java | 32 ++++++------
 .../beanutils2/locale/LocaleBeanUtilsBean.java     |  8 +--
 .../beanutils2/locale/LocaleConvertUtils.java      | 22 ++++----
 .../beanutils2/locale/LocaleConvertUtilsBean.java  | 24 ++++-----
 .../converters/BigDecimalLocaleConverter.java      | 22 ++++----
 .../converters/BigIntegerLocaleConverter.java      | 22 ++++----
 .../locale/converters/ByteLocaleConverter.java     | 22 ++++----
 .../locale/converters/DateLocaleConverter.java     | 22 ++++----
 .../locale/converters/DecimalLocaleConverter.java  | 22 ++++----
 .../locale/converters/DoubleLocaleConverter.java   | 22 ++++----
 .../locale/converters/FloatLocaleConverter.java    | 22 ++++----
 .../locale/converters/IntegerLocaleConverter.java  | 22 ++++----
 .../locale/converters/SqlDateLocaleConverter.java  | 22 ++++----
 .../locale/converters/SqlTimeLocaleConverter.java  | 22 ++++----
 .../converters/SqlTimestampLocaleConverter.java    | 22 ++++----
 .../locale/converters/StringLocaleConverter.java   | 24 ++++-----
 48 files changed, 325 insertions(+), 325 deletions(-)

diff --git a/src/main/java/org/apache/commons/beanutils2/BasicDynaClass.java b/src/main/java/org/apache/commons/beanutils2/BasicDynaClass.java
index ac0fb6d..2c2a6b6 100644
--- a/src/main/java/org/apache/commons/beanutils2/BasicDynaClass.java
+++ b/src/main/java/org/apache/commons/beanutils2/BasicDynaClass.java
@@ -69,7 +69,7 @@ public class BasicDynaClass implements DynaClass, Serializable {
      * Construct a new BasicDynaClass with the specified parameters.
      *
      * @param name Name of this DynaBean class
-     * @param dynaBeanClass The implementation class for new intances
+     * @param dynaBeanClass The implementation class for new instances
      * @param properties Property descriptors for the supported properties
      */
     public BasicDynaClass(final String name, Class<?> dynaBeanClass,
@@ -108,7 +108,7 @@ public class BasicDynaClass implements DynaClass, Serializable {
 
 
     /**
-     * The argument values to be passed to the constructore we will use
+     * The argument values to be passed to the constructor we will use
      * to create new DynaBean instances.
      */
     protected Object[] constructorValues = { this };
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanAccessLanguageException.java b/src/main/java/org/apache/commons/beanutils2/BeanAccessLanguageException.java
index 66eb0d7..25d51a6 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanAccessLanguageException.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanAccessLanguageException.java
@@ -19,7 +19,7 @@ package org.apache.commons.beanutils2;
 
 /**
  * Thrown to indicate that the <em>Bean Access Language</em> cannot execute query
- * against given bean. This is a runtime exception and access langauges are encouraged
+ * against given bean. This is a runtime exception and access languages are encouraged
  * to subclass to create custom exceptions whenever appropriate.
  *
  * @since 1.7
@@ -29,7 +29,7 @@ public class BeanAccessLanguageException extends IllegalArgumentException {
 
     private static final long serialVersionUID = 1L;
 
-    // --------------------------------------------------------- Constuctors
+    // --------------------------------------------------------- Constructors
 
     /**
      * Constructs a <code>BeanAccessLanguageException</code> without a detail message.
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanPropertyValueChangeConsumer.java b/src/main/java/org/apache/commons/beanutils2/BeanPropertyValueChangeConsumer.java
index fc44b53..6d014c5 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanPropertyValueChangeConsumer.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanPropertyValueChangeConsumer.java
@@ -96,14 +96,14 @@ public class BeanPropertyValueChangeConsumer<T, V> implements Consumer<T> {
     private V propertyValue;
 
     /**
-     * Determines whether <code>null</code> objects in the property path will genenerate an
+     * Determines whether <code>null</code> objects in the property path will generate an
      * <code>IllegalArgumentException</code> or not. If set to <code>true</code> then if any objects
      * in the property path leading up to the target property evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged but
-     * not rethrown.  If set to <code>false</code> then if any objects in the property path leading
+     * not re-thrown.  If set to <code>false</code> then if any objects in the property path leading
      * up to the target property evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged and
-     * rethrown.
+     * re-thrown.
      */
     private boolean ignoreNull;
 
@@ -124,14 +124,14 @@ public class BeanPropertyValueChangeConsumer<T, V> implements Consumer<T> {
     /**
      * Constructor which takes the name of the property to be changed, the new value to set
      * the property to and a boolean which determines whether <code>null</code> objects in the
-     * property path will genenerate an <code>IllegalArgumentException</code> or not.
+     * property path will generate an <code>IllegalArgumentException</code> or not.
      *
      * @param propertyName The name of the property that will be updated with the value specified by
      * <code>propertyValue</code>.
      * @param propertyValue The value that <code>propertyName</code> will be set to on the target
      * object.
      * @param ignoreNull Determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not.
+     * generate an <code>IllegalArgumentException</code> or not.
      * @throws IllegalArgumentException If the propertyName provided is null or empty.
      */
     public BeanPropertyValueChangeConsumer(final String propertyName, final V propertyValue, final boolean ignoreNull) {
@@ -223,16 +223,16 @@ public class BeanPropertyValueChangeConsumer<T, V> implements Consumer<T> {
 
     /**
      * Returns the flag that determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not. If set to <code>true</code> then
+     * generate an <code>IllegalArgumentException</code> or not. If set to <code>true</code> then
      * if any objects in the property path leading up to the target property evaluate to
      * <code>null</code> then the <code>IllegalArgumentException</code> throw by
-     * <code>PropertyUtils</code> will be logged but not rethrown.  If set to <code>false</code> then
+     * <code>PropertyUtils</code> will be logged but not re-thrown.  If set to <code>false</code> then
      * if any objects in the property path leading up to the target property evaluate to
      * <code>null</code> then the <code>IllegalArgumentException</code> throw by
-     * <code>PropertyUtils</code> will be logged and rethrown.
+     * <code>PropertyUtils</code> will be logged and re-thrown.
      *
      * @return The flag that determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not.
+     * generate an <code>IllegalArgumentException</code> or not.
      */
     public boolean isIgnoreNull() {
         return ignoreNull;
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanPropertyValueEqualsPredicate.java b/src/main/java/org/apache/commons/beanutils2/BeanPropertyValueEqualsPredicate.java
index 31b84e7..586f6ec 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanPropertyValueEqualsPredicate.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanPropertyValueEqualsPredicate.java
@@ -128,14 +128,14 @@ public class BeanPropertyValueEqualsPredicate<T, V> implements Predicate<T> {
     /**
      * <p>Should <code>null</code> objects in the property path be ignored?</p>
      * <p>
-     * Determines whether <code>null</code> objects in the property path will genenerate an
+     * Determines whether <code>null</code> objects in the property path will generate an
      * <code>IllegalArgumentException</code> or not. If set to <code>true</code> then if any objects
      * in the property path evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged but
-     * not rethrown and <code>false</code> will be returned.  If set to <code>false</code> then if
+     * not re-thrown and <code>false</code> will be returned.  If set to <code>false</code> then if
      * any objects in the property path evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged and
-     * rethrown.
+     * re-thrown.
      * </p>
      */
     private boolean ignoreNull;
@@ -155,12 +155,12 @@ public class BeanPropertyValueEqualsPredicate<T, V> implements Predicate<T> {
     /**
      * Constructor which takes the name of the property, its expected value
      * to be used in evaluation, and a boolean which determines whether <code>null</code> objects in
-     * the property path will genenerate an <code>IllegalArgumentException</code> or not.
+     * the property path will generate an <code>IllegalArgumentException</code> or not.
      *
      * @param propertyName The name of the property that will be evaluated against the expected value.
      * @param propertyValue The value to use in object evaluation.
      * @param ignoreNull Determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not.
+     * generate an <code>IllegalArgumentException</code> or not.
      * @throws IllegalArgumentException If the property name provided is null or empty.
      */
     public BeanPropertyValueEqualsPredicate(final String propertyName, final V propertyValue, final boolean ignoreNull) {
@@ -176,7 +176,7 @@ public class BeanPropertyValueEqualsPredicate<T, V> implements Predicate<T> {
     }
 
     /**
-     * Evaulates the object provided against the criteria specified when this
+     * Evaluates the object provided against the criteria specified when this
      * <code>BeanPropertyValueEqualsPredicate</code> was constructed.  Equality is based on
      * either reference or logical equality as defined by the property object's equals method. If
      * any object in the property path leading up to the target property is <code>null</code> then
@@ -275,16 +275,16 @@ public class BeanPropertyValueEqualsPredicate<T, V> implements Predicate<T> {
 
     /**
      * Returns the flag which determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not. If set to <code>true</code> then
+     * generate an <code>IllegalArgumentException</code> or not. If set to <code>true</code> then
      * if any objects in the property path evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged but
-     * not rethrown and <code>false</code> will be returned.  If set to <code>false</code> then if
+     * not re-thrown and <code>false</code> will be returned.  If set to <code>false</code> then if
      * any objects in the property path evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged and
-     * rethrown.
+     * re-thrown.
      *
      * @return The flag which determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not.
+     * generate an <code>IllegalArgumentException</code> or not.
      */
     public boolean isIgnoreNull() {
         return ignoreNull;
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java b/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
index 1401dcc..1a13701 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
@@ -82,14 +82,14 @@ public class BeanToPropertyValueTransformer<T, R> implements Function<T, R> {
     /**
      * <p>Should null objects on the property path throw an <code>IllegalArgumentException</code>?</p>
      * <p>
-     * Determines whether <code>null</code> objects in the property path will genenerate an
+     * Determines whether <code>null</code> objects in the property path will generate an
      * <code>IllegalArgumentException</code> or not. If set to <code>true</code> then if any objects
      * in the property path evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged but
-     * not rethrown and <code>null</code> will be returned.  If set to <code>false</code> then if any
+     * not re-thrown and <code>null</code> will be returned.  If set to <code>false</code> then if any
      * objects in the property path evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged and
-     * rethrown.
+     * re-thrown.
      * </p>
      */
     private boolean ignoreNull;
@@ -111,11 +111,11 @@ public class BeanToPropertyValueTransformer<T, R> implements Function<T, R> {
      * Constructs a Transformer and sets ignoreNull.
      * Constructor which takes the name of the property that will be used in the transformation and
      * a boolean which determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not.
+     * generate an <code>IllegalArgumentException</code> or not.
      *
      * @param propertyName The name of the property that will be used in the transformation.
      * @param ignoreNull Determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not.
+     * generate an <code>IllegalArgumentException</code> or not.
      * @throws IllegalArgumentException If the <code>propertyName</code> is <code>null</code> or
      * empty.
      */
@@ -204,16 +204,16 @@ public class BeanToPropertyValueTransformer<T, R> implements Function<T, R> {
 
     /**
      * Returns the flag which determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not. If set to <code>true</code> then
+     * generate an <code>IllegalArgumentException</code> or not. If set to <code>true</code> then
      * if any objects in the property path evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged but
-     * not rethrown and <code>null</code> will be returned.  If set to <code>false</code> then if any
+     * not re-thrown and <code>null</code> will be returned.  If set to <code>false</code> then if any
      * objects in the property path evaluate to <code>null</code> then the
      * <code>IllegalArgumentException</code> throw by <code>PropertyUtils</code> will be logged and
-     * rethrown.
+     * re-thrown.
      *
      * @return The flag which determines whether <code>null</code> objects in the property path will
-     * genenerate an <code>IllegalArgumentException</code> or not.
+     * generate an <code>IllegalArgumentException</code> or not.
      */
     public boolean isIgnoreNull() {
         return ignoreNull;
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanUtils.java b/src/main/java/org/apache/commons/beanutils2/BeanUtils.java
index 94a6e25..8870d7e 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanUtils.java
@@ -28,7 +28,7 @@ import java.util.Map;
  *
  * <p>The implementations are provided by {@link BeanUtilsBean}.
  * These static utility methods use the default instance.
- * More sophisticated behaviour can be provided by using a <code>BeanUtilsBean</code> instance.</p>
+ * More sophisticated behavior can be provided by using a <code>BeanUtilsBean</code> instance.</p>
  *
  * @see BeanUtilsBean
  */
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
index baf615d..57498ea 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
@@ -102,7 +102,7 @@ public class BeanUtilsBean {
     /** A reference to Throwable's initCause method, or null if it's not there in this JVM */
     private static final Method INIT_CAUSE_METHOD = getInitCauseMethod();
 
-    // --------------------------------------------------------- Constuctors
+    // --------------------------------------------------------- Constructors
 
     /**
      * <p>Constructs an instance using new property
@@ -450,7 +450,7 @@ public class BeanUtilsBean {
      * is provided (i.e. where the getReadMethod() returns non-null).</p>
      *
      * <p>This map can be fed back to a call to
-     * <code>BeanUtils.populate()</code> to reconsitute the same set of
+     * <code>BeanUtils.populate()</code> to re-constitute the same set of
      * properties, modulo differences for read-only and write-only
      * properties, but only if there are no indexed properties.</p>
      *
diff --git a/src/main/java/org/apache/commons/beanutils2/ConstructorUtils.java b/src/main/java/org/apache/commons/beanutils2/ConstructorUtils.java
index eeca7f0..37c00a6 100644
--- a/src/main/java/org/apache/commons/beanutils2/ConstructorUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/ConstructorUtils.java
@@ -22,7 +22,7 @@ import java.lang.reflect.InvocationTargetException;
 import java.lang.reflect.Modifier;
 
 /**
- * <p> Utility reflection methods focussed on constructors, modelled after {@link MethodUtils}. </p>
+ * <p> Utility reflection methods focused on constructors, modeled after {@link MethodUtils}. </p>
  *
  * <h3>Known Limitations</h3>
  * <h4>Accessing Public Constructors In A Default Access Superclass</h4>
@@ -33,7 +33,7 @@ import java.lang.reflect.Modifier;
  * <p><code>ConstructorUtils</code> contains a workaround for this situation.
  * It will attempt to call <code>setAccessible</code> on this constructor.
  * If this call succeeds, then the method can be invoked as normal.
- * This call will only succeed when the application has sufficient security privilages.
+ * This call will only succeed when the application has sufficient security privileges.
  * If this call fails then a warning will be logged and the method may fail.</p>
  *
  */
@@ -380,12 +380,12 @@ public class ConstructorUtils {
                 //
                 // Unfortunately, using reflection to invoke these methods
                 // seems to (wrongly) to prevent access even when the method
-                // modifer is public.
+                // modifier is public.
                 //
                 // The following workaround solves the problem but will only
-                // work from sufficiently privilages code.
+                // work from sufficiently privileges code.
                 //
-                // Better workarounds would be greatfully accepted.
+                // Better workarounds would be gratefully accepted.
                 //
                 ctor.setAccessible(true);
             } catch (final SecurityException se) {
diff --git a/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java b/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java
index 43abfda..cb61ea9 100644
--- a/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java
+++ b/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java
@@ -176,7 +176,7 @@ public class ContextClassLoaderLocal<T> {
      */
     public synchronized void set(final T value) {
         // synchronizing the whole method is a bit slower
-        // but guarentees no subtle threading problems
+        // but guarantees no subtle threading problems
 
         // make sure that the map is given a change to purge itself
         valueByClassLoader.isEmpty();
diff --git a/src/main/java/org/apache/commons/beanutils2/DynaProperty.java b/src/main/java/org/apache/commons/beanutils2/DynaProperty.java
index b238298..032a7b2 100644
--- a/src/main/java/org/apache/commons/beanutils2/DynaProperty.java
+++ b/src/main/java/org/apache/commons/beanutils2/DynaProperty.java
@@ -35,7 +35,7 @@ import java.util.Map;
  * for use by mapped and iterated properties.
  * A mapped or iterated property may choose to indicate the type it expects.
  * The DynaBean implementation may choose to enforce this type on its entries.
- * Alternatively, an implementatin may choose to ignore this property.
+ * Alternatively, an implementation may choose to ignore this property.
  * All keys for maps must be of type String so no meta data is needed for map keys.</p>
  *
  */
@@ -201,7 +201,7 @@ public class DynaProperty implements Serializable {
 
     /**
      * Checks this instance against the specified Object for equality. Overrides the
-     * default refererence test for equality provided by {@link java.lang.Object#equals(Object)}
+     * default reference test for equality provided by {@link java.lang.Object#equals(Object)}
      * @param obj The object to compare to
      * @return <code>true</code> if object is a dyna property with the same name
      * type and content type, otherwise <code>false</code>
diff --git a/src/main/java/org/apache/commons/beanutils2/LazyDynaBean.java b/src/main/java/org/apache/commons/beanutils2/LazyDynaBean.java
index 8d31c7a..339fe7e 100644
--- a/src/main/java/org/apache/commons/beanutils2/LazyDynaBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/LazyDynaBean.java
@@ -63,7 +63,7 @@ import org.apache.commons.logging.LogFactory;
  *       a property with an <code>ArrayList</code> type to the <code>DynaClass</code> when
  *       the <code>set(name, index, value)</code> method is called.
  *       It will also instantiate a new <code>ArrayList</code> and automatically <i>grow</i>
- *       the <code>List</code> so that it is big enough to accomodate the index being set.
+ *       the <code>List</code> so that it is big enough to accommodate the index being set.
  *       <code>ArrayList</code> is the default indexed property that LazyDynaBean uses but
  *       this can be easily changed by overriding the <code>defaultIndexedProperty(name)</code>
  *       method.</p>
@@ -78,7 +78,7 @@ import org.apache.commons.logging.LogFactory;
  *      <code>null</code> in the <code>LazyDynaBean</code>, then it will instantiate a
  *      new <code>List</code> or <code>Array</code> as specified by the property's type
  *      in the <code>DynaClass</code> and automatically <i>grow</i> the <code>List</code>
- *      or <code>Array</code> so that it is big enough to accomodate the index being set.</p>
+ *      or <code>Array</code> so that it is big enough to accommodate the index being set.</p>
  *
  *     <pre><code>
  *         DynaBean myBean = new LazyDynaBean();
diff --git a/src/main/java/org/apache/commons/beanutils2/LazyDynaClass.java b/src/main/java/org/apache/commons/beanutils2/LazyDynaClass.java
index 2791c31..69b2326 100644
--- a/src/main/java/org/apache/commons/beanutils2/LazyDynaClass.java
+++ b/src/main/java/org/apache/commons/beanutils2/LazyDynaClass.java
@@ -22,7 +22,7 @@ package org.apache.commons.beanutils2;
  * <p>A <code>MutableDynaClass</code> is a specialized extension to <code>DynaClass</code>
  *    that allows properties to be added or removed dynamically.</p>
  *
- * <p>This implementation has one slightly unusual default behaviour - calling
+ * <p>This implementation has one slightly unusual default behavior - calling
  *    the <code>getDynaProperty(name)</code> method for a property which doesn't
  *    exist returns a <code>DynaProperty</code> rather than <code>null</code>. The
  *    reason for this is that <code>BeanUtils</code> calls this method to check if
@@ -31,7 +31,7 @@ package org.apache.commons.beanutils2;
  *    when any of its <code>set()</code> methods are called. For this reason the
  *    <code>isDynaProperty(name)</code> method has been added to this implementation
  *    in order to determine if a property actually exists. If the more <i>normal</i>
- *    behaviour of returning <code>null</code> is required, then this can be achieved
+ *    behavior of returning <code>null</code> is required, then this can be achieved
  *    by calling the <code>setReturnNull(true)</code>.</p>
  *
  * <p>The <code>add(name, type, readable, writable)</code> method is not implemented
@@ -306,7 +306,7 @@ public class LazyDynaClass extends BasicDynaClass implements MutableDynaClass  {
      * <p>If the property is not found and the <code>returnNull</code> indicator is
      *    <code>false</code> a new property descriptor is created and returned (although
      *    its not actually added to the DynaClass's properties). This is the default
-     *    beahviour.</p>
+     *    behavior.</p>
      *
      * <p>The reason for not returning a <code>null</code> property descriptor is that
      *    <code>BeanUtils</code> uses this method to check if a property exists
diff --git a/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java b/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java
index 1fe6c60..c747fd9 100644
--- a/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java
+++ b/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java
@@ -26,7 +26,7 @@ import java.util.Map;
  *
  * <p>There are two main purposes for this class:</p>
  *    <ul>
- *        <li>To provide <i>Lazy List</i> behaviour - automatically
+ *        <li>To provide <i>Lazy List</i> behavior - automatically
  *            <i>growing</i> and <i>populating</i> the <code>List</code>
  *            with either <code>DynaBean</code>, <code>java.util.Map</code>
  *            or POJO Beans.</li>
diff --git a/src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java b/src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java
index e0553b0..02c50a7 100644
--- a/src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java
+++ b/src/main/java/org/apache/commons/beanutils2/LazyDynaMap.java
@@ -25,10 +25,10 @@ import java.util.Map;
  * <p>Its a <i>light weight</i> <code>DynaBean</code> implementation because there is no
  *    actual <code>DynaClass</code> associated with this <code>DynaBean</code> - in fact
  *    it implements the <code>DynaClass</code> interface itself providing <i>pseudo</i> DynaClass
- *    behaviour from the actual values stored in the <code>Map</code>.</p>
+ *    behavior from the actual values stored in the <code>Map</code>.</p>
  *
  * <p>As well providing rhe standard <code>DynaBean</code> access to the <code>Map</code>'s properties
- *    this class also provides the usual <i>Lazy</i> behaviour:</p>
+ *    this class also provides the usual <i>Lazy</i> behavior:</p>
  *    <ul>
  *       <li>Properties don't need to be pre-defined in a <code>DynaClass</code></li>
  *       <li>Indexed properties (<code>Lists</code> or <code>Arrays</code>) are automatically instantiated
@@ -203,7 +203,7 @@ public class LazyDynaMap extends LazyDynaBean implements MutableDynaClass {
      * <p>If the property is not found and the <code>returnNull</code> indicator is
      *    <code>false</code> a new property descriptor is created and returned (although
      *    its not actually added to the DynaClass's properties). This is the default
-     *    beahviour.</p>
+     *    behavior.</p>
      *
      * <p>The reason for not returning a <code>null</code> property descriptor is that
      *    <code>BeanUtils</code> uses this method to check if a property exists
diff --git a/src/main/java/org/apache/commons/beanutils2/MethodUtils.java b/src/main/java/org/apache/commons/beanutils2/MethodUtils.java
index 7b39d34..78680a8 100644
--- a/src/main/java/org/apache/commons/beanutils2/MethodUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/MethodUtils.java
@@ -43,7 +43,7 @@ import org.apache.commons.logging.LogFactory;
  * <p><code>MethodUtils</code> contains a workaround for this situation.
  * It will attempt to call <code>setAccessible</code> on this method.
  * If this call succeeds, then the method can be invoked as normal.
- * This call will only succeed when the application has sufficient security privilages.
+ * This call will only succeed when the application has sufficient security privileges.
  * If this call fails then a warning will be logged and the method may fail.</p>
  *
  */
@@ -134,7 +134,7 @@ public class MethodUtils {
     /**
      * <p>Invoke a named method whose parameter type matches the object type.</p>
      *
-     * <p>The behaviour of this method is less deterministic
+     * <p>The behavior of this method is less deterministic
      * than <code>invokeExactMethod()</code>.
      * It loops through all methods with names that match
      * and then executes the first it finds with compatible parameters.</p>
@@ -176,7 +176,7 @@ public class MethodUtils {
     /**
      * <p>Invoke a named method whose parameter type matches the object type.</p>
      *
-     * <p>The behaviour of this method is less deterministic
+     * <p>The behavior of this method is less deterministic
      * than {@link #invokeExactMethod(Object object,String methodName,Object [] args)}.
      * It loops through all methods with names that match
      * and then executes the first it finds with compatible parameters.</p>
@@ -225,7 +225,7 @@ public class MethodUtils {
     /**
      * <p>Invoke a named method whose parameter type matches the object type.</p>
      *
-     * <p>The behaviour of this method is less deterministic
+     * <p>The behavior of this method is less deterministic
      * than {@link
      * #invokeExactMethod(Object object,String methodName,Object [] args,Class[] parameterTypes)}.
      * It loops through all methods with names that match
@@ -454,7 +454,7 @@ public class MethodUtils {
     /**
      * <p>Invoke a named static method whose parameter type matches the object type.</p>
      *
-     * <p>The behaviour of this method is less deterministic
+     * <p>The behavior of this method is less deterministic
      * than {@link #invokeExactMethod(Object, String, Object[], Class[])}.
      * It loops through all methods with names that match
      * and then executes the first it finds with compatible parameters.</p>
@@ -497,7 +497,7 @@ public class MethodUtils {
     /**
      * <p>Invoke a named static method whose parameter type matches the object type.</p>
      *
-     * <p>The behaviour of this method is less deterministic
+     * <p>The behavior of this method is less deterministic
      * than {@link #invokeExactMethod(Object object,String methodName,Object [] args)}.
      * It loops through all methods with names that match
      * and then executes the first it finds with compatible parameters.</p>
@@ -547,7 +547,7 @@ public class MethodUtils {
     /**
      * <p>Invoke a named static method whose parameter type matches the object type.</p>
      *
-     * <p>The behaviour of this method is less deterministic
+     * <p>The behavior of this method is less deterministic
      * than {@link
      * #invokeExactStaticMethod(Class objectClass,String methodName,Object [] args,Class[] parameterTypes)}.
      * It loops through all methods with names that match
@@ -917,7 +917,7 @@ public class MethodUtils {
      * In other words, it finds a method with the given name
      * that will take the parameters given.</p>
      *
-     * <p>This method is slightly undeterministic since it loops
+     * <p>This method is slightly indeterministic since it loops
      * through methods names and return the first matching method.</p>
      *
      * <p>This method is used by
@@ -1046,12 +1046,12 @@ public class MethodUtils {
             //
             // Unfortunately, using reflection to invoke these methods
             // seems to (wrongly) to prevent access even when the method
-            // modifer is public.
+            // modifier is public.
             //
             // The following workaround solves the problem but will only
-            // work from sufficiently privilages code.
+            // work from sufficiently privileges code.
             //
-            // Better workarounds would be greatfully accepted.
+            // Better workarounds would be gratefully accepted.
             //
             if (!method.isAccessible()) {
                 method.setAccessible(true);
@@ -1138,7 +1138,7 @@ public class MethodUtils {
         }
 
         /*
-         * If the destination class is null, we've travelled all the way up to
+         * If the destination class is null, we've traveled all the way up to
          * an Object match. We'll penalize this by adding 1.5 to the cost.
          */
         if (srcClass == null) {
diff --git a/src/main/java/org/apache/commons/beanutils2/NestedNullException.java b/src/main/java/org/apache/commons/beanutils2/NestedNullException.java
index 9a037d7..faa012f 100644
--- a/src/main/java/org/apache/commons/beanutils2/NestedNullException.java
+++ b/src/main/java/org/apache/commons/beanutils2/NestedNullException.java
@@ -28,7 +28,7 @@ public class NestedNullException extends BeanAccessLanguageException {
 
     private static final long serialVersionUID = 1L;
 
-    // --------------------------------------------------------- Constuctors
+    // --------------------------------------------------------- Constructors
 
     /**
      * Constructs a <code>NestedNullException</code> without a detail message.
diff --git a/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java b/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java
index 828c12c..a18178c 100644
--- a/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java
@@ -121,7 +121,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#copyProperties
      */
     public static void copyProperties(final Object dest, final Object orig)
@@ -147,7 +147,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#describe
      */
     public static Map<String, Object> describe(final Object bean)
@@ -179,7 +179,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getIndexedProperty(Object,String)
      */
     public static Object getIndexedProperty(final Object bean, final String name)
@@ -211,7 +211,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getIndexedProperty(Object,String, int)
      */
     public static Object getIndexedProperty(final Object bean,
@@ -239,7 +239,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getMappedProperty(Object,String)
      */
     public static Object getMappedProperty(final Object bean, final String name)
@@ -267,7 +267,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getMappedProperty(Object,String, String)
      */
     public static Object getMappedProperty(final Object bean,
@@ -315,7 +315,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException
      * if the property accessor method throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getNestedProperty
      */
     public static Object getNestedProperty(final Object bean, final String name)
@@ -346,7 +346,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getProperty
      */
     public static Object getProperty(final Object bean, final String name)
@@ -379,7 +379,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getPropertyDescriptor
      */
     public static PropertyDescriptor getPropertyDescriptor(final Object bean,
@@ -432,7 +432,7 @@ public class PropertyUtils {
 
 
     /**
-     * <p>Return the Java Class repesenting the property editor class that has
+     * <p>Return the Java Class representing the property editor class that has
      * been registered for this property (if any).</p>
      *
      * <p>For more details see <code>PropertyUtilsBean</code>.</p>
@@ -451,7 +451,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getPropertyEditorClass(Object,String)
      */
     public static Class<?> getPropertyEditorClass(final Object bean, final String name)
@@ -484,7 +484,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getPropertyType(Object, String)
      */
     public static Class<?> getPropertyType(final Object bean, final String name)
@@ -531,7 +531,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#getSimpleProperty
      */
     public static Object getSimpleProperty(final Object bean, final String name)
@@ -627,7 +627,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#setIndexedProperty(Object, String, Object)
      */
     public static void setIndexedProperty(final Object bean, final String name,
@@ -660,7 +660,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#setIndexedProperty(Object, String, Object)
      */
     public static void setIndexedProperty(final Object bean, final String name,
@@ -688,7 +688,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#setMappedProperty(Object, String, Object)
      */
     public static void setMappedProperty(final Object bean, final String name,
@@ -716,7 +716,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#setMappedProperty(Object, String, String, Object)
      */
     public static void setMappedProperty(final Object bean, final String name,
@@ -747,7 +747,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#setNestedProperty
      */
     public static void setNestedProperty(final Object bean,
@@ -778,7 +778,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#setProperty
      */
     public static void setProperty(final Object bean, final String name, final Object value)
@@ -809,7 +809,7 @@ public class PropertyUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      * @see PropertyUtilsBean#setSimpleProperty
      */
     public static void setSimpleProperty(final Object bean,
diff --git a/src/main/java/org/apache/commons/beanutils2/PropertyUtilsBean.java b/src/main/java/org/apache/commons/beanutils2/PropertyUtilsBean.java
index dbc3c36..d8eece0 100644
--- a/src/main/java/org/apache/commons/beanutils2/PropertyUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/PropertyUtilsBean.java
@@ -144,7 +144,7 @@ public class PropertyUtilsBean {
      * The {@link Resolver} handles the <i>property name</i>
      * expressions and the implementation in use effectively
      * controls the dialect of the <i>expression language</i>
-     * that BeanUtils recongnises.
+     * that BeanUtils recognizes.
      * <p>
      * {@link DefaultResolver} is the default implementation used.
      *
@@ -161,7 +161,7 @@ public class PropertyUtilsBean {
      * The {@link Resolver} handles the <i>property name</i>
      * expressions and the implementation in use effectively
      * controls the dialect of the <i>expression language</i>
-     * that BeanUtils recongnises.
+     * that BeanUtils recognizes.
      * <p>
      * {@link DefaultResolver} is the default implementation used.
      *
@@ -260,7 +260,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public void copyProperties(final Object dest, final Object orig)
             throws IllegalAccessException, InvocationTargetException,
@@ -353,7 +353,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Map<String, Object> describe(final Object bean)
             throws IllegalAccessException, InvocationTargetException,
@@ -407,7 +407,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Object getIndexedProperty(final Object bean, String name)
             throws IllegalAccessException, InvocationTargetException,
@@ -464,7 +464,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Object getIndexedProperty(final Object bean,
                                             final String name, final int index)
@@ -572,7 +572,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Object getMappedProperty(final Object bean, String name)
             throws IllegalAccessException, InvocationTargetException,
@@ -623,7 +623,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Object getMappedProperty(final Object bean,
                                            final String name, final String key)
@@ -751,7 +751,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException
      * if the property accessor method throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Object getNestedProperty(Object bean, String name)
             throws IllegalAccessException, InvocationTargetException,
@@ -864,7 +864,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Object getProperty(final Object bean, final String name)
             throws IllegalAccessException, InvocationTargetException,
@@ -903,7 +903,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public PropertyDescriptor getPropertyDescriptor(Object bean,
                                                            String name)
@@ -1041,7 +1041,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Class<?> getPropertyEditorClass(final Object bean, final String name)
             throws IllegalAccessException, InvocationTargetException,
@@ -1095,7 +1095,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Class<?> getPropertyType(Object bean, String name)
             throws IllegalAccessException, InvocationTargetException,
@@ -1207,7 +1207,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public Object getSimpleProperty(final Object bean, final String name)
             throws IllegalAccessException, InvocationTargetException,
@@ -1508,7 +1508,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public void setIndexedProperty(final Object bean, String name,
                                           final Object value)
@@ -1565,7 +1565,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public void setIndexedProperty(final Object bean, final String name,
                                           final int index, final Object value)
@@ -1685,7 +1685,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public void setMappedProperty(final Object bean, String name,
                                          final Object value)
@@ -1738,7 +1738,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public void setMappedProperty(final Object bean, final String name,
                                          final String key, final Object value)
@@ -1849,7 +1849,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public void setNestedProperty(Object bean,
                                          String name, final Object value)
@@ -1913,26 +1913,26 @@ public class PropertyUtilsBean {
      * or an Array).</li>
      * </ul>
      * <p>
-     * The default behaviour of beanutils 1.7.1 or later is for assigning to
-     * "a.b" to mean a.put(b, obj) always. However the behaviour of beanutils
+     * The default behavior of beanutils 1.7.1 or later is for assigning to
+     * "a.b" to mean a.put(b, obj) always. However the behavior of beanutils
      * version 1.6.0, 1.6.1, 1.7.0 was for "a.b" to mean a.setB(obj) if such
      * a method existed, and a.put(b, obj) otherwise. In version 1.5 it meant
-     * a.put(b, obj) always (ie the same as the behaviour in the current version).
+     * a.put(b, obj) always (ie the same as the behavior in the current version).
      * In versions prior to 1.5 it meant a.setB(obj) always. [yes, this is
      * all <i>very</i> unfortunate]
      * <p>
-     * Users who would like to customise the meaning of "a.b" in method
+     * Users who would like to customize the meaning of "a.b" in method
      * setNestedProperty when a is a Map can create a custom subclass of
-     * this class and override this method to implement the behaviour of
-     * their choice, such as restoring the pre-1.4 behaviour of this class
+     * this class and override this method to implement the behavior of
+     * their choice, such as restoring the pre-1.4 behavior of this class
      * if they wish. When overriding this method, do not forget to deal
      * with MAPPED_DELIM and INDEXED_DELIM characters in the propertyName.
      * <p>
      * Note, however, that the recommended solution for objects that
      * implement Map but want their simple properties to come first is
      * for <i>those</i> objects to override their get/put methods to implement
-     * that behaviour, and <i>not</i> to solve the problem by modifying the
-     * default behaviour of the PropertyUtilsBean class by overriding this
+     * that behavior, and <i>not</i> to solve the problem by modifying the
+     * default behavior of the PropertyUtilsBean class by overriding this
      * method.
      *
      * @param bean Map bean
@@ -1994,7 +1994,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public void setProperty(final Object bean, final String name, final Object value)
             throws IllegalAccessException, InvocationTargetException,
@@ -2022,7 +2022,7 @@ public class PropertyUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public void setSimpleProperty(final Object bean,
                                          final String name, final Object value)
diff --git a/src/main/java/org/apache/commons/beanutils2/ResultSetDynaClass.java b/src/main/java/org/apache/commons/beanutils2/ResultSetDynaClass.java
index ba03e34..5418a0a 100644
--- a/src/main/java/org/apache/commons/beanutils2/ResultSetDynaClass.java
+++ b/src/main/java/org/apache/commons/beanutils2/ResultSetDynaClass.java
@@ -227,7 +227,7 @@ public class ResultSetDynaClass extends JDBCDynaClass {
     /**
      * <p>Loads the class of the given name which by default uses the class loader used
      * to load this library.
-     * Dervations of this class could implement alternative class loading policies such as
+     * Derivations of this class could implement alternative class loading policies such as
      * using custom ClassLoader or using the Threads's context class loader etc.
      * </p>
      * @param className The name of the class to load
diff --git a/src/main/java/org/apache/commons/beanutils2/WeakFastHashMap.java b/src/main/java/org/apache/commons/beanutils2/WeakFastHashMap.java
index 5569ad6..d7f9cf3 100644
--- a/src/main/java/org/apache/commons/beanutils2/WeakFastHashMap.java
+++ b/src/main/java/org/apache/commons/beanutils2/WeakFastHashMap.java
@@ -26,7 +26,7 @@ import java.util.WeakHashMap;
 
 /**
  * <p>A customized implementation of <code>java.util.HashMap</code> designed
- * to operate in a multithreaded environment where the large majority of
+ * to operate in a multi-threaded environment where the large majority of
  * method calls are read-only, instead of structural changes.  When operating
  * in "fast" mode, read calls are non-synchronized and write calls perform the
  * following steps:</p>
@@ -229,7 +229,7 @@ public class WeakFastHashMap<K, V> extends HashMap<K, V> {
 
     // Map modification
     // ----------------------------------------------------------------------
-    // These methods perform special behaviour in 'fast' mode.
+    // These methods perform special behavior in 'fast' mode.
     // The map is cloned, updated and then assigned back.
     // See the comments at the top as to why this won't always work.
 
diff --git a/src/main/java/org/apache/commons/beanutils2/converters/AbstractConverter.java b/src/main/java/org/apache/commons/beanutils2/converters/AbstractConverter.java
index 87d1c2a..1b5fe82 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/AbstractConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/AbstractConverter.java
@@ -183,7 +183,7 @@ public abstract class AbstractConverter implements Converter {
      * Convert the input object into a String.
      * <p>
      * <b>N.B.</b>This implementation simply uses the value's
-     * <code>toString()</code> method and should be overriden if a
+     * <code>toString()</code> method and should be overridden if a
      * more sophisticated mechanism for <i>conversion to a String</i>
      * is required.
      *
@@ -214,7 +214,7 @@ public abstract class AbstractConverter implements Converter {
      * Return the first element from an Array (or Collection)
      * or the value unchanged if not an Array (or Collection).
      *
-     * N.B. This needs to be overriden for array/Collection converters.
+     * N.B. This needs to be overridden for array/Collection converters.
      *
      * @param value The value to convert
      * @return The first element in an Array (or Collection)
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 b942fad..6b94a34 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/ArrayConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/ArrayConverter.java
@@ -42,7 +42,7 @@ import org.apache.commons.beanutils2.Converter;
  *         appropriate for the type, to convert individual elements
  *         of the array. This leverages the power of existing converters
  *         without having to replicate their functionality for converting
- *         to the element type and removes the need to create a specifc
+ *         to the element type and removes the need to create a specific
  *         array type converters.</li>
  *     <li><b>Arrays or Collections</b> - can convert from either arrays or
  *         Collections to an array, limited only by the capability
@@ -111,7 +111,7 @@ import org.apache.commons.beanutils2.Converter;
  *    ArrayConverter arrayConverter = new ArrayConverter(int[].class, integerConverter);
  *
  *    // Construct a "Matrix" Converter which converts arrays of integer arrays using
- *    // the pre-ceeding ArrayConverter as the element Converter.
+ *    // 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.
  *    //      Also the delimiter used by the first ArrayConverter needs to be added to the
  *    //      "allowed characters" for this one.
@@ -427,9 +427,9 @@ public class ArrayConverter extends AbstractConverter {
      * @param value String value to be parsed
      * @return List of parsed elements.
      *
-     * @throws ConversionException if the syntax of <code>svalue</code>
+     * @throws ConversionException if the syntax of <code>value</code>
      *  is not syntactically valid
-     * @throws NullPointerException if <code>svalue</code>
+     * @throws NullPointerException if <code>value</code>
      *  is <code>null</code>
      */
     private List<String> parseElements(final Class<?> type, String value) {
diff --git a/src/main/java/org/apache/commons/beanutils2/converters/CharacterConverter.java b/src/main/java/org/apache/commons/beanutils2/converters/CharacterConverter.java
index 7434e58..4aef77c 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/CharacterConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/CharacterConverter.java
@@ -18,7 +18,7 @@ package org.apache.commons.beanutils2.converters;
 
 
 /**
- * {@link org.apache.commons.beanutils2.Converter} implementaion that handles conversion
+ * {@link org.apache.commons.beanutils2.Converter} implementation that handles conversion
  * to and from <b>java.lang.Character</b> objects.
  * <p>
  * Can be configured to either return a <i>default value</i> or throw a
diff --git a/src/main/java/org/apache/commons/beanutils2/converters/ClassConverter.java b/src/main/java/org/apache/commons/beanutils2/converters/ClassConverter.java
index e89d242..67a6b1c 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/ClassConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/ClassConverter.java
@@ -17,7 +17,7 @@
 package org.apache.commons.beanutils2.converters;
 
 /**
- * {@link org.apache.commons.beanutils2.Converter} implementaion that handles conversion
+ * {@link org.apache.commons.beanutils2.Converter} implementation that handles conversion
  * to and from <b>java.lang.Class</b> objects.
  * <p>
  * The class will be loaded from the thread context class
diff --git a/src/main/java/org/apache/commons/beanutils2/converters/DateTimeConverter.java b/src/main/java/org/apache/commons/beanutils2/converters/DateTimeConverter.java
index 9b2e1cf..fee6110 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/DateTimeConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/DateTimeConverter.java
@@ -33,7 +33,7 @@ import java.util.TimeZone;
 import org.apache.commons.beanutils2.ConversionException;
 
 /**
- * {@link org.apache.commons.beanutils2.Converter} implementaion
+ * {@link org.apache.commons.beanutils2.Converter} implementation
  * that handles conversion to and from <b>date/time</b> objects.
  * <p>
  * This implementation handles conversion for the following
@@ -320,7 +320,7 @@ public abstract class DateTimeConverter extends AbstractConverter {
             // ---------------------- JDK 1.3 Fix ----------------------
             // N.B. Prior to JDK 1.4 the Timestamp's getTime() method
             //      didn't include the milliseconds. The following code
-            //      ensures it works consistently accross JDK versions
+            //      ensures it works consistently across JDK versions
             final java.sql.Timestamp timestamp = (java.sql.Timestamp)value;
             long timeInMillis = ((timestamp.getTime() / 1000) * 1000);
             timeInMillis += timestamp.getNanos() / 1000000;
diff --git a/src/main/java/org/apache/commons/beanutils2/converters/FileConverter.java b/src/main/java/org/apache/commons/beanutils2/converters/FileConverter.java
index 96e75c7..28a222d 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/FileConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/FileConverter.java
@@ -19,7 +19,7 @@ package org.apache.commons.beanutils2.converters;
 import java.io.File;
 
 /**
- * {@link org.apache.commons.beanutils2.Converter} implementaion that handles conversion
+ * {@link org.apache.commons.beanutils2.Converter} implementation that handles conversion
  * to and from <b>java.io.File</b> objects.
  * <p>
  * Can be configured to either return a <i>default value</i> or throw a
diff --git a/src/main/java/org/apache/commons/beanutils2/converters/NumberConverter.java b/src/main/java/org/apache/commons/beanutils2/converters/NumberConverter.java
index 3232ce8..b7c8da2 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/NumberConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/NumberConverter.java
@@ -29,7 +29,7 @@ import java.util.Locale;
 import org.apache.commons.beanutils2.ConversionException;
 
 /**
- * {@link org.apache.commons.beanutils2.Converter} implementaion that handles conversion
+ * {@link org.apache.commons.beanutils2.Converter} implementation that handles conversion
  * to and from <b>java.lang.Number</b> objects.
  * <p>
  * This implementation handles conversion for the following
diff --git a/src/main/java/org/apache/commons/beanutils2/converters/StringConverter.java b/src/main/java/org/apache/commons/beanutils2/converters/StringConverter.java
index 0951bcd..0a0c779 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/StringConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/StringConverter.java
@@ -32,7 +32,7 @@ package org.apache.commons.beanutils2.converters;
  * that value.
  * <p>
  * It is possible to replace this converter with something that has a big
- * if/else statement that selects behaviour based on the real type of the
+ * if/else statement that selects behavior based on the real type of the
  * object being converted (or possibly has a map of converters, and looks
  * them up based on the class of the input object). However this is not part
  * of the existing ConvertUtils framework.
diff --git a/src/main/java/org/apache/commons/beanutils2/converters/URLConverter.java b/src/main/java/org/apache/commons/beanutils2/converters/URLConverter.java
index 60db392..8fcd6b8 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/URLConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/URLConverter.java
@@ -19,7 +19,7 @@ package org.apache.commons.beanutils2.converters;
 import java.net.URL;
 
 /**
- * {@link org.apache.commons.beanutils2.Converter} implementaion that handles conversion
+ * {@link org.apache.commons.beanutils2.Converter} implementation that handles conversion
  * to and from <b>java.net.URL</b> objects.
  * <p>
  * Can be configured to either return a <i>default value</i> or throw a
diff --git a/src/main/java/org/apache/commons/beanutils2/expression/DefaultResolver.java b/src/main/java/org/apache/commons/beanutils2/expression/DefaultResolver.java
index 8ca5baf..e65257c 100644
--- a/src/main/java/org/apache/commons/beanutils2/expression/DefaultResolver.java
+++ b/src/main/java/org/apache/commons/beanutils2/expression/DefaultResolver.java
@@ -25,7 +25,7 @@ package org.apache.commons.beanutils2.expression;
  * <li><strong>Simple (<code>name</code>)</strong> - The specified
  *     <code>name</code> identifies an individual property of a particular
  *     JavaBean.  The name of the actual getter or setter method to be used
- *     is determined using standard JavaBeans instrospection, so that (unless
+ *     is determined using standard JavaBeans introspection, so that (unless
  *     overridden by a <code>BeanInfo</code> class, a property named "xyz"
  *     will have a getter method named <code>getXyz()</code> or (for boolean
  *     properties only) <code>isXyz()</code>, and a setter method named
@@ -174,7 +174,7 @@ public class DefaultResolver implements Resolver {
      * Indicate whether the expression is for an indexed property or not.
      *
      * @param expression The property expression
-     * @return <code>true</code> if the expresion is indexed,
+     * @return <code>true</code> if the expression is indexed,
      *  otherwise <code>false</code>
      */
     @Override
@@ -197,7 +197,7 @@ public class DefaultResolver implements Resolver {
      * Indicate whether the expression is for a mapped property or not.
      *
      * @param expression The property expression
-     * @return <code>true</code> if the expresion is mapped,
+     * @return <code>true</code> if the expression is mapped,
      *  otherwise <code>false</code>
      */
     @Override
@@ -254,7 +254,7 @@ public class DefaultResolver implements Resolver {
     }
 
     /**
-     * Remove the last property expresson from the
+     * Remove the last property expression from the
      * current expression.
      *
      * @param expression The property expression
diff --git a/src/main/java/org/apache/commons/beanutils2/expression/Resolver.java b/src/main/java/org/apache/commons/beanutils2/expression/Resolver.java
index 1099ed5..8583d34 100644
--- a/src/main/java/org/apache/commons/beanutils2/expression/Resolver.java
+++ b/src/main/java/org/apache/commons/beanutils2/expression/Resolver.java
@@ -29,7 +29,7 @@ package org.apache.commons.beanutils2.expression;
  *      // Iterate through a nested property expression
  *      while (resolver.hasNested(name)) {
  *
- *          // isolate a single property from a nested expresion
+ *          // isolate a single property from a nested expression
  *          String next = resolver.next(name);
  *
  *          // Process...
@@ -131,7 +131,7 @@ public interface Resolver {
      * Indicate whether the expression is for an indexed property or not.
      *
      * @param expression The property expression
-     * @return <code>true</code> if the expresion is indexed,
+     * @return <code>true</code> if the expression is indexed,
      *  otherwise <code>false</code>
      */
     boolean isIndexed(String expression);
@@ -140,7 +140,7 @@ public interface Resolver {
      * Indicate whether the expression is for a mapped property or not.
      *
      * @param expression The property expression
-     * @return <code>true</code> if the expresion is mapped,
+     * @return <code>true</code> if the expression is mapped,
      *  otherwise <code>false</code>
      */
     boolean isMapped(String expression);
@@ -155,7 +155,7 @@ public interface Resolver {
     String next(String expression);
 
     /**
-     * Remove the last property expresson from the
+     * Remove the last property expression from the
      * current expression.
      *
      * @param expression The property expression
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/BaseLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/BaseLocaleConverter.java
index 0cf25de..4c6a346 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/BaseLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/BaseLocaleConverter.java
@@ -27,7 +27,7 @@ import org.apache.commons.logging.LogFactory;
 
 
 /**
- * <p>The base class for all standart type locale-sensitive converters.
+ * <p>The base class for all standard type locale-sensitive converters.
  * It has {@link LocaleConverter} and {@link org.apache.commons.beanutils2.Converter} implementations,
  * that convert an incoming locale-sensitive Object into an object of correspond type,
  * optionally using a default value or throwing a {@link ConversionException}
@@ -62,10 +62,10 @@ public abstract class BaseLocaleConverter implements LocaleConverter {
     /**
      * Create a {@link LocaleConverter} that will throw a {@link ConversionException}
      * if a conversion error occurs.
-     * An unlocalized pattern is used for the convertion.
+     * An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     protected BaseLocaleConverter(final Locale locale, final String pattern) {
 
@@ -77,7 +77,7 @@ public abstract class BaseLocaleConverter implements LocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     protected BaseLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -88,11 +88,11 @@ public abstract class BaseLocaleConverter implements LocaleConverter {
     /**
      * Create a {@link LocaleConverter} that will return the specified default value
      * if a conversion error occurs.
-     * An unlocalized pattern is used for the convertion.
+     * An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     protected BaseLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -105,7 +105,7 @@ public abstract class BaseLocaleConverter implements LocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     protected BaseLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -119,7 +119,7 @@ public abstract class BaseLocaleConverter implements LocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param useDefault    Indicate whether the default value is used or not
      * @param locPattern    Indicate whether the pattern is localized or not
      */
@@ -146,7 +146,7 @@ public abstract class BaseLocaleConverter implements LocaleConverter {
      * specified type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws ParseException if conversion cannot be performed
@@ -186,7 +186,7 @@ public abstract class BaseLocaleConverter implements LocaleConverter {
 
     /**
      * Convert the specified locale-sensitive input object into an output object of the
-     * specified type. The default pattern is used for the convertion.
+     * specified type. The default pattern is used for the conversion.
      *
      * @param <T> The desired target type of the conversion
      * @param type Data type to which this value should be converted
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtils.java b/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtils.java
index 9eb87e6..6b5bfc5 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtils.java
@@ -114,7 +114,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getIndexedProperty(Object, String, String)
      */
@@ -142,7 +142,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getIndexedProperty(Object, String)
      */
@@ -154,7 +154,7 @@ public class LocaleBeanUtils extends BeanUtils {
     }
 
     /**
-     * <p>Return the value of the specified locale-sensetive indexed property
+     * <p>Return the value of the specified locale-sensitive indexed property
      * of the specified bean, as a String using the specified conversion pattern.</p>
      *
      * <p>For more details see <code>LocaleBeanUtilsBean</code></p>
@@ -170,7 +170,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getIndexedProperty(Object, String, int, String)
      */
@@ -183,7 +183,7 @@ public class LocaleBeanUtils extends BeanUtils {
     }
 
     /**
-     * <p>Return the value of the specified locale-sensetive indexed property
+     * <p>Return the value of the specified locale-sensitive indexed property
      * of the specified bean, as a String using the default conversion pattern of
      * the corresponding {@link LocaleConverter}.</p>
      *
@@ -199,7 +199,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getIndexedProperty(Object, String, int)
      */
@@ -227,7 +227,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getSimpleProperty(Object, String, String)
      */
@@ -254,7 +254,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getSimpleProperty(Object, String)
      */
@@ -282,7 +282,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getMappedProperty(Object, String, String, String)
      */
@@ -312,7 +312,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getMappedProperty(Object, String, String)
      */
@@ -342,7 +342,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getMappedPropertyLocale(Object, String, String)
      */
@@ -371,7 +371,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getMappedProperty(Object, String)
      */
@@ -399,7 +399,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getNestedProperty(Object, String, String)
      */
@@ -425,7 +425,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getNestedProperty(Object, String)
      */
@@ -453,7 +453,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getProperty(Object, String, String)
      */
@@ -480,7 +480,7 @@ public class LocaleBeanUtils extends BeanUtils {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      *
      * @see LocaleBeanUtilsBean#getProperty(Object, String)
      */
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtilsBean.java b/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtilsBean.java
index e8977c8..f14463f 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtilsBean.java
@@ -195,7 +195,7 @@ public class LocaleBeanUtilsBean extends BeanUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public String getIndexedProperty(
                                     final Object bean,
@@ -227,7 +227,7 @@ public class LocaleBeanUtilsBean extends BeanUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     @Override
     public String getIndexedProperty(
@@ -258,7 +258,7 @@ public class LocaleBeanUtilsBean extends BeanUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     public String getIndexedProperty(final Object bean,
                                             final String name, final int index, final String pattern)
@@ -286,7 +286,7 @@ public class LocaleBeanUtilsBean extends BeanUtilsBean {
      * @throws InvocationTargetException if the property accessor method
      *  throws an exception
      * @throws NoSuchMethodException if an accessor method for this
-     *  propety cannot be found
+     *  property cannot be found
      */
     @Override
     public String getIndexedProperty(final Object bean,
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtils.java b/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtils.java
index ad2b00a..ebd9dd6 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtils.java
@@ -108,7 +108,7 @@ public class LocaleConvertUtils {
      * <p>For more details see <code>LocaleConvertUtilsBean</code></p>
      *
      * @param value The Value to be converted
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @return the converted value
      * @see LocaleConvertUtilsBean#convert(Object, String)
      */
@@ -118,13 +118,13 @@ public class LocaleConvertUtils {
 
     /**
      * <p>Convert the specified locale-sensitive value into a String
-     * using the paticular convertion pattern.</p>
+     * using the particular conversion pattern.</p>
      *
      * <p>For more details see <code>LocaleConvertUtilsBean</code></p>
      *
      * @param value The Value to be converted
      * @param locale The locale
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      * @see LocaleConvertUtilsBean#convert(Object, Locale, String)
      */
@@ -151,14 +151,14 @@ public class LocaleConvertUtils {
 
     /**
      * <p>Convert the specified value to an object of the specified class (if
-     * possible) using the convertion pattern. Otherwise, return a String
+     * possible) using the conversion pattern. Otherwise, return a String
      * representation of the value.</p>
      *
      * <p>For more details see <code>LocaleConvertUtilsBean</code></p>
      *
      * @param value The String scalar value to be converted
      * @param clazz The Data type to which this value should be converted.
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      * @see LocaleConvertUtilsBean#convert(String, Class, String)
      */
@@ -169,7 +169,7 @@ public class LocaleConvertUtils {
 
     /**
      * <p>Convert the specified value to an object of the specified class (if
-     * possible) using the convertion pattern. Otherwise, return a String
+     * possible) using the conversion pattern. Otherwise, return a String
      * representation of the value.</p>
      *
      * <p>For more details see <code>LocaleConvertUtilsBean</code></p>
@@ -177,7 +177,7 @@ public class LocaleConvertUtils {
      * @param value The String scalar value to be converted
      * @param clazz The Data type to which this value should be converted.
      * @param locale The locale
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      * @see LocaleConvertUtilsBean#convert(String, Class, Locale, String)
      */
@@ -188,13 +188,13 @@ public class LocaleConvertUtils {
 
     /**
      * <p>Convert an array of specified values to an array of objects of the
-     * specified class (if possible) using the convertion pattern.</p>
+     * specified class (if possible) using the conversion pattern.</p>
      *
      * <p>For more details see <code>LocaleConvertUtilsBean</code></p>
      *
      * @param values Value to be converted (may be null)
      * @param clazz Java array or element class to be converted to
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      * @see LocaleConvertUtilsBean#convert(String[], Class, String)
      */
@@ -221,14 +221,14 @@ public class LocaleConvertUtils {
 
     /**
      * <p>Convert an array of specified values to an array of objects of the
-     * specified class (if possible) using the convertion pattern.</p>
+     * specified class (if possible) using the conversion pattern.</p>
      *
      * <p>For more details see <code>LocaleConvertUtilsBean</code></p>
      *
      * @param values Value to be converted (may be null)
      * @param clazz Java array or element class to be converted to
      * @param locale The locale
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      * @see LocaleConvertUtilsBean#convert(String[], Class, Locale, String)
      */
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtilsBean.java b/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtilsBean.java
index 06511fb..29d0c1e 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtilsBean.java
@@ -94,7 +94,7 @@ public class LocaleConvertUtilsBean {
 
     // ----------------------------------------------------- Instance Variables
 
-    /** The locale - default for convertion. */
+    /** The locale - default for conversion. */
     private Locale defaultLocale = Locale.getDefault();
 
     /** Indicate whether the pattern is localized or not */
@@ -186,7 +186,7 @@ public class LocaleConvertUtilsBean {
      * using the conversion pattern.
      *
      * @param value The Value to be converted
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @return the converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if thrown by an
@@ -198,11 +198,11 @@ public class LocaleConvertUtilsBean {
 
     /**
      * Convert the specified locale-sensitive value into a String
-     * using the paticular convertion pattern.
+     * using the particular conversion pattern.
      *
      * @param value The Value to be converted
      * @param locale The locale
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if thrown by an
@@ -233,12 +233,12 @@ public class LocaleConvertUtilsBean {
 
     /**
      * Convert the specified value to an object of the specified class (if
-     * possible) using the convertion pattern. Otherwise, return a String
+     * possible) using the conversion pattern. Otherwise, return a String
      * representation of the value.
      *
      * @param value The String scalar value to be converted
      * @param clazz The Data type to which this value should be converted.
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if thrown by an
@@ -251,13 +251,13 @@ public class LocaleConvertUtilsBean {
 
     /**
      * Convert the specified value to an object of the specified class (if
-     * possible) using the convertion pattern. Otherwise, return a String
+     * possible) using the conversion pattern. Otherwise, return a String
      * representation of the value.
      *
      * @param value The String scalar value to be converted
      * @param clazz The Data type to which this value should be converted.
      * @param locale The locale
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if thrown by an
@@ -287,11 +287,11 @@ public class LocaleConvertUtilsBean {
 
     /**
      * Convert an array of specified values to an array of objects of the
-     * specified class (if possible) using the convertion pattern.
+     * specified class (if possible) using the conversion pattern.
      *
      * @param values Value to be converted (may be null)
      * @param clazz Java array or element class to be converted to
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if thrown by an
@@ -320,12 +320,12 @@ public class LocaleConvertUtilsBean {
 
     /**
      * Convert an array of specified values to an array of objects of the
-     * specified class (if possible) using the convertion pattern.
+     * specified class (if possible) using the conversion pattern.
      *
      * @param values Value to be converted (may be null)
      * @param clazz Java array or element class to be converted to
      * @param locale The locale
-     * @param pattern The convertion pattern
+     * @param pattern The conversion pattern
      * @return the converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if thrown by an
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/BigDecimalLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/BigDecimalLocaleConverter.java
index 44736e9..aa97d4c 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/BigDecimalLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/BigDecimalLocaleConverter.java
@@ -42,7 +42,7 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public BigDecimalLocaleConverter() {
@@ -66,7 +66,7 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -91,10 +91,10 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public BigDecimalLocaleConverter(final Locale locale, final String pattern) {
 
@@ -107,7 +107,7 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public BigDecimalLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -120,7 +120,7 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -146,7 +146,7 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -173,11 +173,11 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public BigDecimalLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -191,7 +191,7 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public BigDecimalLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -204,7 +204,7 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter {
      * BigDecimal type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws ConversionException if conversion cannot be performed
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/BigIntegerLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/BigIntegerLocaleConverter.java
index 5e7e311..54dc248 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/BigIntegerLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/BigIntegerLocaleConverter.java
@@ -43,7 +43,7 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public BigIntegerLocaleConverter() {
@@ -67,7 +67,7 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -92,10 +92,10 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public BigIntegerLocaleConverter(final Locale locale, final String pattern) {
 
@@ -108,7 +108,7 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public BigIntegerLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -121,7 +121,7 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -147,7 +147,7 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -174,11 +174,11 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public BigIntegerLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -192,7 +192,7 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public BigIntegerLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -205,7 +205,7 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter {
      * BigInteger type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws ConversionException if conversion cannot be performed
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/ByteLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/ByteLocaleConverter.java
index 37773ce..e17d671 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/ByteLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/ByteLocaleConverter.java
@@ -43,7 +43,7 @@ public class ByteLocaleConverter extends DecimalLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public ByteLocaleConverter() {
@@ -67,7 +67,7 @@ public class ByteLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -92,10 +92,10 @@ public class ByteLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public ByteLocaleConverter(final Locale locale, final String pattern) {
 
@@ -108,7 +108,7 @@ public class ByteLocaleConverter extends DecimalLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public ByteLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -121,7 +121,7 @@ public class ByteLocaleConverter extends DecimalLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -147,7 +147,7 @@ public class ByteLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -174,11 +174,11 @@ public class ByteLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public ByteLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -192,7 +192,7 @@ public class ByteLocaleConverter extends DecimalLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public ByteLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -205,7 +205,7 @@ public class ByteLocaleConverter extends DecimalLocaleConverter {
      * specified type. This method will return values of type Byte.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if conversion cannot be performed
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/DateLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/DateLocaleConverter.java
index a29252b..6af68f6 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/DateLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/DateLocaleConverter.java
@@ -63,7 +63,7 @@ public class DateLocaleConverter extends BaseLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public DateLocaleConverter() {
@@ -87,7 +87,7 @@ public class DateLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -112,10 +112,10 @@ public class DateLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public DateLocaleConverter(final Locale locale, final String pattern) {
 
@@ -128,7 +128,7 @@ public class DateLocaleConverter extends BaseLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public DateLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -141,7 +141,7 @@ public class DateLocaleConverter extends BaseLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -167,7 +167,7 @@ public class DateLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -195,11 +195,11 @@ public class DateLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public DateLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -213,7 +213,7 @@ public class DateLocaleConverter extends BaseLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public DateLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -250,7 +250,7 @@ public class DateLocaleConverter extends BaseLocaleConverter {
      * specified type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return the converted Date value
      *
      * @throws org.apache.commons.beanutils2.ConversionException
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/DecimalLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/DecimalLocaleConverter.java
index 2f1e95a..dca8e4d 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/DecimalLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/DecimalLocaleConverter.java
@@ -53,7 +53,7 @@ public class DecimalLocaleConverter extends BaseLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public DecimalLocaleConverter() {
@@ -77,7 +77,7 @@ public class DecimalLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -102,10 +102,10 @@ public class DecimalLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public DecimalLocaleConverter(final Locale locale, final String pattern) {
 
@@ -118,7 +118,7 @@ public class DecimalLocaleConverter extends BaseLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public DecimalLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -131,7 +131,7 @@ public class DecimalLocaleConverter extends BaseLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -157,7 +157,7 @@ public class DecimalLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -184,11 +184,11 @@ public class DecimalLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public DecimalLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -202,7 +202,7 @@ public class DecimalLocaleConverter extends BaseLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public DecimalLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -218,7 +218,7 @@ public class DecimalLocaleConverter extends BaseLocaleConverter {
      * object of the specified type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if conversion
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/DoubleLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/DoubleLocaleConverter.java
index 2b8a38b..0dd2a92 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/DoubleLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/DoubleLocaleConverter.java
@@ -42,7 +42,7 @@ public class DoubleLocaleConverter extends DecimalLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public DoubleLocaleConverter() {
@@ -66,7 +66,7 @@ public class DoubleLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -91,10 +91,10 @@ public class DoubleLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public DoubleLocaleConverter(final Locale locale, final String pattern) {
 
@@ -107,7 +107,7 @@ public class DoubleLocaleConverter extends DecimalLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public DoubleLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -120,7 +120,7 @@ public class DoubleLocaleConverter extends DecimalLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -146,7 +146,7 @@ public class DoubleLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -173,11 +173,11 @@ public class DoubleLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public DoubleLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -191,7 +191,7 @@ public class DoubleLocaleConverter extends DecimalLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public DoubleLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -204,7 +204,7 @@ public class DoubleLocaleConverter extends DecimalLocaleConverter {
      * specified type. This method will return Double type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if conversion cannot be performed
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/FloatLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/FloatLocaleConverter.java
index 7c3d838..21fdb25 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/FloatLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/FloatLocaleConverter.java
@@ -43,7 +43,7 @@ public class FloatLocaleConverter extends DecimalLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public FloatLocaleConverter() {
@@ -67,7 +67,7 @@ public class FloatLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -92,10 +92,10 @@ public class FloatLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public FloatLocaleConverter(final Locale locale, final String pattern) {
 
@@ -108,7 +108,7 @@ public class FloatLocaleConverter extends DecimalLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public FloatLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -121,7 +121,7 @@ public class FloatLocaleConverter extends DecimalLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -147,7 +147,7 @@ public class FloatLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -174,11 +174,11 @@ public class FloatLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public FloatLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -192,7 +192,7 @@ public class FloatLocaleConverter extends DecimalLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public FloatLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -206,7 +206,7 @@ public class FloatLocaleConverter extends DecimalLocaleConverter {
     * can not be stored in the Float.
     *
     * @param value The input object to be converted
-    * @param pattern The pattern is used for the convertion
+    * @param pattern The pattern is used for the conversion
     * @return The converted value
     *
     * @throws ConversionException if conversion cannot be performed
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/IntegerLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/IntegerLocaleConverter.java
index 4c033b2..6871fa6 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/IntegerLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/IntegerLocaleConverter.java
@@ -43,7 +43,7 @@ public class IntegerLocaleConverter extends DecimalLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
 
@@ -68,7 +68,7 @@ public class IntegerLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -93,10 +93,10 @@ public class IntegerLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public IntegerLocaleConverter(final Locale locale, final String pattern) {
 
@@ -109,7 +109,7 @@ public class IntegerLocaleConverter extends DecimalLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public IntegerLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -122,7 +122,7 @@ public class IntegerLocaleConverter extends DecimalLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -148,7 +148,7 @@ public class IntegerLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -175,11 +175,11 @@ public class IntegerLocaleConverter extends DecimalLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public IntegerLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -193,7 +193,7 @@ public class IntegerLocaleConverter extends DecimalLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public IntegerLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -206,7 +206,7 @@ public class IntegerLocaleConverter extends DecimalLocaleConverter {
      * specified type. This method will return Integer type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws ConversionException if conversion cannot be performed
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlDateLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlDateLocaleConverter.java
index d2a6202..da33ab6 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlDateLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlDateLocaleConverter.java
@@ -41,7 +41,7 @@ public class SqlDateLocaleConverter extends DateLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public SqlDateLocaleConverter() {
@@ -65,7 +65,7 @@ public class SqlDateLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -90,10 +90,10 @@ public class SqlDateLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public SqlDateLocaleConverter(final Locale locale, final String pattern) {
 
@@ -106,7 +106,7 @@ public class SqlDateLocaleConverter extends DateLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public SqlDateLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -119,7 +119,7 @@ public class SqlDateLocaleConverter extends DateLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -145,7 +145,7 @@ public class SqlDateLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -172,11 +172,11 @@ public class SqlDateLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public SqlDateLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -190,7 +190,7 @@ public class SqlDateLocaleConverter extends DateLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public SqlDateLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -206,7 +206,7 @@ public class SqlDateLocaleConverter extends DateLocaleConverter {
      * specified type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if conversion
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlTimeLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlTimeLocaleConverter.java
index 156bd20..1e94d9c 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlTimeLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlTimeLocaleConverter.java
@@ -41,7 +41,7 @@ public class SqlTimeLocaleConverter extends DateLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public SqlTimeLocaleConverter() {
@@ -65,7 +65,7 @@ public class SqlTimeLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -90,10 +90,10 @@ public class SqlTimeLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public SqlTimeLocaleConverter(final Locale locale, final String pattern) {
 
@@ -106,7 +106,7 @@ public class SqlTimeLocaleConverter extends DateLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public SqlTimeLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -119,7 +119,7 @@ public class SqlTimeLocaleConverter extends DateLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -145,7 +145,7 @@ public class SqlTimeLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -172,11 +172,11 @@ public class SqlTimeLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public SqlTimeLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -190,7 +190,7 @@ public class SqlTimeLocaleConverter extends DateLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public SqlTimeLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -205,7 +205,7 @@ public class SqlTimeLocaleConverter extends DateLocaleConverter {
      * specified type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if conversion
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlTimestampLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlTimestampLocaleConverter.java
index 798551c..be6f9fe 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlTimestampLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/SqlTimestampLocaleConverter.java
@@ -41,7 +41,7 @@ public class SqlTimestampLocaleConverter extends DateLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public SqlTimestampLocaleConverter() {
@@ -65,7 +65,7 @@ public class SqlTimestampLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -90,10 +90,10 @@ public class SqlTimestampLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public SqlTimestampLocaleConverter(final Locale locale, final String pattern) {
 
@@ -106,7 +106,7 @@ public class SqlTimestampLocaleConverter extends DateLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public SqlTimestampLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -119,7 +119,7 @@ public class SqlTimestampLocaleConverter extends DateLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -144,7 +144,7 @@ public class SqlTimestampLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -171,11 +171,11 @@ public class SqlTimestampLocaleConverter extends DateLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public SqlTimestampLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -189,7 +189,7 @@ public class SqlTimestampLocaleConverter extends DateLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public SqlTimestampLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -204,7 +204,7 @@ public class SqlTimestampLocaleConverter extends DateLocaleConverter {
      * specified type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if conversion
diff --git a/src/main/java/org/apache/commons/beanutils2/locale/converters/StringLocaleConverter.java b/src/main/java/org/apache/commons/beanutils2/locale/converters/StringLocaleConverter.java
index 33ae012..82e1e8b 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/converters/StringLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/converters/StringLocaleConverter.java
@@ -57,7 +57,7 @@ public class StringLocaleConverter extends BaseLocaleConverter {
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      */
     public StringLocaleConverter() {
@@ -81,7 +81,7 @@ public class StringLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
      */
@@ -106,10 +106,10 @@ public class StringLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will throw a {@link org.apache.commons.beanutils2.ConversionException}
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public StringLocaleConverter(final Locale locale, final String pattern) {
 
@@ -122,7 +122,7 @@ public class StringLocaleConverter extends BaseLocaleConverter {
      * if a conversion error occurs.
      *
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public StringLocaleConverter(final Locale locale, final String pattern, final boolean locPattern) {
@@ -135,7 +135,7 @@ public class StringLocaleConverter extends BaseLocaleConverter {
      * that will return the specified default value
      * if a conversion error occurs. The locale is the default locale for
      * this instance of the Java Virtual Machine and an unlocalized pattern is used
-     * for the convertion.
+     * for the conversion.
      *
      * @param defaultValue  The default value to be returned
      */
@@ -161,7 +161,7 @@ public class StringLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
@@ -188,11 +188,11 @@ public class StringLocaleConverter extends BaseLocaleConverter {
     /**
      * Create a {@link org.apache.commons.beanutils2.locale.LocaleConverter}
      * that will return the specified default value
-     * if a conversion error occurs. An unlocalized pattern is used for the convertion.
+     * if a conversion error occurs. An unlocalized pattern is used for the conversion.
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      */
     public StringLocaleConverter(final Object defaultValue, final Locale locale, final String pattern) {
 
@@ -206,7 +206,7 @@ public class StringLocaleConverter extends BaseLocaleConverter {
      *
      * @param defaultValue  The default value to be returned
      * @param locale        The locale
-     * @param pattern       The convertion pattern
+     * @param pattern       The conversion pattern
      * @param locPattern    Indicate whether the pattern is localized or not
      */
     public StringLocaleConverter(final Object defaultValue, final Locale locale, final String pattern, final boolean locPattern) {
@@ -221,7 +221,7 @@ public class StringLocaleConverter extends BaseLocaleConverter {
      * specified type.
      *
      * @param value The input object to be converted
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The converted value
      *
      * @throws org.apache.commons.beanutils2.ConversionException if conversion
@@ -265,7 +265,7 @@ public class StringLocaleConverter extends BaseLocaleConverter {
      * Make an instance of DecimalFormat.
      *
      * @param locale The locale
-     * @param pattern The pattern is used for the convertion
+     * @param pattern The pattern is used for the conversion
      * @return The format for the locale and pattern
      *
      * @throws ConversionException if conversion cannot be performed