From 78708e975b059226f01415cf16bd6e9d42721bfc Mon Sep 17 00:00:00 2001 From: Graham Bleaney Date: Sun, 6 Sep 2020 12:34:41 -0400 Subject: [PATCH] Fix typo in typing.py --- Lib/typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/typing.py b/Lib/typing.py index fce8da4fe3cf05..2899a0213d4340 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -245,7 +245,7 @@ def inner(*args, **kwds): 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.