Skip to content

Commit b3e36a2

Browse files
committed
fixing typos
1 parent a54bf65 commit b3e36a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dicts/transformdict.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Trasformdict: a mapping that transforms keys on lookup
1+
"""Transformdict: a mapping that transforms keys on lookup
22
33
This module and ``test_transformdict.py`` were extracted from a
44
patch contributed to Python by Antoine Pitrou implementing his
@@ -81,7 +81,7 @@ def __delitem__(self, key):
8181
del self._data[transformed]
8282
del self._original[transformed]
8383

84-
# Methods overriden to mitigate the performance overhead.
84+
# Methods overridden to mitigate the performance overhead.
8585

8686
def clear(self):
8787
'D.clear() -> None. Remove all items from D.'

0 commit comments

Comments
 (0)