Update wording MYFACES-4435
diff --git a/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Lang.js b/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Lang.js
index 8f5f323..cef80cd 100644
--- a/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Lang.js
+++ b/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Lang.js
@@ -250,7 +250,7 @@
      * @param {Object} src the source map
      * @param {boolean} overwrite if set to true the destination is overwritten if the keys exist in both maps
      **/
-    mixMaps:function (dest, src, overwrite, blockFilter, whitelistFilter) {
+    mixMaps:function (dest, src, overwrite, blockFilter, allowlistFilter) {
         if (!dest || !src) {
             throw this.makeException(new Error(), null, null, this._nameSpace, "mixMaps", this.getMessage("ERR_PARAM_MIXMAPS", null, "_Lang.mixMaps"));
         }
@@ -260,7 +260,7 @@
             if (blockFilter && blockFilter[key]) {
                 continue;
             }
-            if (whitelistFilter && !whitelistFilter[key]) {
+            if (allowlistFilter && !allowlistFilter[key]) {
                 continue;
             }
             if (!overwrite) {
diff --git a/impl/src/main/java/org/apache/myfaces/application/ApplicationImpl.java b/impl/src/main/java/org/apache/myfaces/application/ApplicationImpl.java
index 4c4d44e..c852292 100755
--- a/impl/src/main/java/org/apache/myfaces/application/ApplicationImpl.java
+++ b/impl/src/main/java/org/apache/myfaces/application/ApplicationImpl.java
@@ -1795,7 +1795,7 @@
         if(context.isProjectStage(ProjectStage.Production) && !isCachedList)   
         {
             // Note at this point listenerForList cannot be null, but just let this
-            // as a sanity check.
+            // as a verification check.
             if (dependencyList != null)
             {
                 _classToResourceDependencyMap.put(inspectedClass, dependencyList);
@@ -2192,7 +2192,7 @@
         if(isProduction && !isCachedList) //if we're in production and the list is not yet cached, store it
         {
             // Note at this point listenerForList cannot be null, but just let this
-            // as a sanity check.
+            // as a verification check.
             if (listenerForList != null)
             {
                 _classToListenerForMap.put(inspectedClass, listenerForList);
@@ -2341,7 +2341,7 @@
         if(isProduction && !isCachedList)   //if we're in production and the list is not yet cached, store it
         {
             // Note at this point listenerForList cannot be null, but just let this
-            // as a sanity check.
+            // as a verification check.
             if (dependencyList != null)
             {
                 _classToResourceDependencyMap.put(inspectedClass, dependencyList);