From: Graham Bleaney Date: Tue, 8 Sep 2020 22:41:10 +0000 (-0400) Subject: Fix typo in typing.py (GH-22121) X-Git-Tag: v3.10.0a1~148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=84ef33c5117acd9867781135a9aeb62052432e8a;p=thirdparty%2FPython%2Fcpython.git Fix typo in typing.py (GH-22121) This is a trivial PR to fix a typo in a docstring in typing.py. From reverences -> references --- diff --git a/Lib/typing.py b/Lib/typing.py index fce8da4fe3cf..2899a0213d43 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -245,7 +245,7 @@ def _tp_cache(func): def _eval_type(t, globalns, localns, recursive_guard=frozenset()): - """Evaluate all forward reverences in the given type t. + """Evaluate all forward references in the given type t. For use of globalns and localns see the docstring for get_type_hints(). recursive_guard is used to prevent prevent infinite recursion with recursive ForwardRef.