From: Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 11 Oct 2020 08:06:48 +0000 (-0700) Subject: Fix typo in typing.rst (GH-22625) X-Git-Tag: v3.9.1rc1~181 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f1c70cf9e850b58a5b676e469dfc0c01e3f6778a;p=thirdparty%2FPython%2Fcpython.git Fix typo in typing.rst (GH-22625) (cherry picked from commit 0ff8a3b374286d2218fc18f47556a5ace202dad3) Co-authored-by: abdo --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 3900e49679a3..108d2eeeaf41 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -1691,7 +1691,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`).