diff options
-rw-r--r-- | Doc/library/typing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index cb14db90711..cdfd403a34e 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`). |