diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 0d2cf0814ea4a4..d06d84cbdfcc36 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -1039,7 +1039,7 @@ def __repr__(self): @classmethod def fromkeys(cls, iterable, value=None, /): - 'Create a new ChainMap with keys from thhe iterable and values set to value.' + 'Create a new ChainMap with keys from iterable and values set to value.' return cls(dict.fromkeys(iterable, value)) def copy(self):