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 2020/11/20 22:02:50 UTC

[commons-collections] branch master updated: Normalize spelling of 'Initialize'.

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-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new 4bd1b5a  Normalize spelling of 'Initialize'.
4bd1b5a is described below

commit 4bd1b5aec683be03834801ef2e39c0d1eab7c8cd
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Nov 20 17:02:45 2020 -0500

    Normalize spelling of 'Initialize'.
---
 .../java/org/apache/commons/collections4/map/AbstractLinkedMap.java     | 2 +-
 .../java/org/apache/commons/collections4/map/AbstractReferenceMap.java  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/collections4/map/AbstractLinkedMap.java b/src/main/java/org/apache/commons/collections4/map/AbstractLinkedMap.java
index b9382d9..a1ac07e 100644
--- a/src/main/java/org/apache/commons/collections4/map/AbstractLinkedMap.java
+++ b/src/main/java/org/apache/commons/collections4/map/AbstractLinkedMap.java
@@ -123,7 +123,7 @@ public abstract class AbstractLinkedMap<K, V> extends AbstractHashedMap<K, V> im
     }
 
     /**
-     * Initialise this subclass during construction.
+     * Initialize this subclass during construction.
      * <p>
      * NOTE: As from v3.2 this method calls
      * {@link #createEntry(HashEntry, int, Object, Object)} to create
diff --git a/src/main/java/org/apache/commons/collections4/map/AbstractReferenceMap.java b/src/main/java/org/apache/commons/collections4/map/AbstractReferenceMap.java
index a8c63c8..9838ee4 100644
--- a/src/main/java/org/apache/commons/collections4/map/AbstractReferenceMap.java
+++ b/src/main/java/org/apache/commons/collections4/map/AbstractReferenceMap.java
@@ -181,7 +181,7 @@ public abstract class AbstractReferenceMap<K, V> extends AbstractHashedMap<K, V>
     }
 
     /**
-     * Initialise this subclass during construction, cloning or deserialization.
+     * Initialize this subclass during construction, cloning or deserialization.
      */
     @Override
     protected void init() {