diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-11 01:06:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-11 01:06:48 -0700 |
commit | f1c70cf9e850b58a5b676e469dfc0c01e3f6778a (patch) | |
tree | 9b2e7d75189f4a914121223614a66e302010f138 | |
parent | ebc5a6b59ece48b490987bdaa2af842c29f5b2f8 (diff) | |
download | cpython-git-f1c70cf9e850b58a5b676e469dfc0c01e3f6778a.tar.gz |
Fix typo in typing.rst (GH-22625)
(cherry picked from commit 0ff8a3b374286d2218fc18f47556a5ace202dad3)
Co-authored-by: abdo <abd.nh25@gmail.com>
-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 3900e49679..108d2eeeaf 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`). |