From: abdo Date: Sun, 11 Oct 2020 06:10:21 +0000 (+0300) Subject: Fix typo in typing.rst (GH-22625) X-Git-Tag: v3.10.0a2~211 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ff8a3b374286d2218fc18f47556a5ace202dad3;p=thirdparty%2FPython%2Fcpython.git Fix typo in typing.rst (GH-22625) --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index f4b2718cdc2f..6111603a995c 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -1723,7 +1723,7 @@ Constant If ``from __future__ import annotations`` is used in Python 3.7 or later, annotations are not evaluated at function definition time. - Instead, the 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`).