Normalize to US English spelling.
diff --git a/core/src/main/java/org/apache/commons/digester3/plugins/Declaration.java b/core/src/main/java/org/apache/commons/digester3/plugins/Declaration.java
index 9779e33..9c62ec3 100644
--- a/core/src/main/java/org/apache/commons/digester3/plugins/Declaration.java
+++ b/core/src/main/java/org/apache/commons/digester3/plugins/Declaration.java
@@ -81,7 +81,7 @@
     }
 
     /**
-     * Create an instance where a fully-initialised ruleLoader instance is provided by the caller instead of having the
+     * Create an instance where a fully-initialized ruleLoader instance is provided by the caller instead of having the
      * PluginManager "discover" an appropriate one.
      *
      * @param pluginClass The class of the object to be instantiated (will be load in the init method)
diff --git a/examples/api/dbinsert/src/main/java/org/apache/commons/digester3/examples/api/dbinsert/Main.java b/examples/api/dbinsert/src/main/java/org/apache/commons/digester3/examples/api/dbinsert/Main.java
index 356a861..0736bda 100644
--- a/examples/api/dbinsert/src/main/java/org/apache/commons/digester3/examples/api/dbinsert/Main.java
+++ b/examples/api/dbinsert/src/main/java/org/apache/commons/digester3/examples/api/dbinsert/Main.java
@@ -135,7 +135,7 @@
         // object from the stack, and also do an actual database insert.
         //
         // Note that the rule instance we are passing to the digester has
-        // been initialised with some useful data (the SQL connection).
+        // been initialized with some useful data (the SQL connection).
         //
         // Note also that in this case we are not using the digester's
         // factory methods to create the rule instance; that's just a
diff --git a/examples/xmlrules/addressbook/src/main/java/org/apache/commons/digester3/examples/xmlrules/addressbook/Main.java b/examples/xmlrules/addressbook/src/main/java/org/apache/commons/digester3/examples/xmlrules/addressbook/Main.java
index 4c5b644..103f164 100644
--- a/examples/xmlrules/addressbook/src/main/java/org/apache/commons/digester3/examples/xmlrules/addressbook/Main.java
+++ b/examples/xmlrules/addressbook/src/main/java/org/apache/commons/digester3/examples/xmlrules/addressbook/Main.java
@@ -70,7 +70,7 @@
         final String rulesfileName = args[0];
         final String datafileName = args[1];
 
-        // Create a Digester instance which has been initialised with
+        // Create a Digester instance which has been initialized with
         // rules loaded from the specified file.
         final Digester d = newLoader( new FromXmlRulesModule()
         {