diff --git a/arraycontext/__init__.py b/arraycontext/__init__.py
index 8562f7b7a70eac986187ffbe517d17a9899c9284..a338059d1caa3e27d680321b5e4c58da51308aa3 100644
--- a/arraycontext/__init__.py
+++ b/arraycontext/__init__.py
@@ -52,7 +52,6 @@ from .container.traversal import (
         rec_multimap_array_container,
         mapped_over_array_containers,
         multimapped_over_array_containers,
-        keyed_map_array_container, rec_keyed_map_array_container,
         thaw, freeze,
         from_numpy, to_numpy)
 
@@ -84,7 +83,6 @@ __all__ = (
         "rec_map_array_container", "rec_multimap_array_container",
         "mapped_over_array_containers",
         "multimapped_over_array_containers",
-        "keyed_map_array_container", "rec_keyed_map_array_container",
         "thaw", "freeze",
         "from_numpy", "to_numpy",
 
diff --git a/arraycontext/impl/pytato/compile.py b/arraycontext/impl/pytato/compile.py
index af685d01709f29c00abe33bb20541640c62fd82a..78273b1f8fdad5528eea2a34c62650d4da57f4ce 100644
--- a/arraycontext/impl/pytato/compile.py
+++ b/arraycontext/impl/pytato/compile.py
@@ -73,7 +73,7 @@ def _ary_container_key_stringifier(keys: Tuple[Any, ...]) -> str:
     Helper for :meth:`LazilyCompilingFunctionCaller.__call__`. Stringifies an
     array-container's component's key. Goals of this routine:
 
-    * No two different keys have the same stringification
+    * No two different keys should have the same stringification
     * Stringified key must a valid identifier according to :meth:`str.isidentifier`
     * (informal) Shorter identifiers are preferred
     """