We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a54bf65 commit b3e36a2Copy full SHA for b3e36a2
dicts/transformdict.py
@@ -1,4 +1,4 @@
1
-"""Trasformdict: a mapping that transforms keys on lookup
+"""Transformdict: a mapping that transforms keys on lookup
2
3
This module and ``test_transformdict.py`` were extracted from a
4
patch contributed to Python by Antoine Pitrou implementing his
@@ -81,7 +81,7 @@ def __delitem__(self, key):
81
del self._data[transformed]
82
del self._original[transformed]
83
84
- # Methods overriden to mitigate the performance overhead.
+ # Methods overridden to mitigate the performance overhead.
85
86
def clear(self):
87
'D.clear() -> None. Remove all items from D.'
0 commit comments