From 61f82e0e337f971da57f8f513abfe693edf95aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 20 Apr 2018 23:08:45 +0300 Subject: Spelling fixes to docs, docstrings, and comments (GH-6374) --- Lib/typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/typing.py') diff --git a/Lib/typing.py b/Lib/typing.py index d45502ffee..83296073b9 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -732,7 +732,7 @@ class _GenericAlias(_Final, _root=True): return (self.__origin__,) def __getattr__(self, attr): - # We are carefull for copy and pickle. + # We are careful for copy and pickle. # Also for simplicity we just don't relay all dunder names if '__origin__' in self.__dict__ and not _is_dunder(attr): return getattr(self.__origin__, attr) -- cgit v1.2.1