From 853afdfee5bcf900e4ad835b0f3cc440ca0213c6 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Sun, 23 Jan 2022 15:10:02 -0800 Subject: [PATCH] fix typo in typing.rst --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index cb14db90711cff..cdfd403a34ef91 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -2142,7 +2142,7 @@ Constant If ``from __future__ import annotations`` is used in Python 3.7 or later, annotations are not evaluated at function definition time. - Instead, they are stored as strings in ``__annotations__``, + Instead, they are stored as strings in ``__annotations__``. This makes it unnecessary to use quotes around the annotation. (see :pep:`563`).