summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorabdo <abd.nh25@gmail.com>2020-10-11 09:10:21 +0300
committerGitHub <noreply@github.com>2020-10-11 11:40:21 +0530
commit0ff8a3b374286d2218fc18f47556a5ace202dad3 (patch)
tree35349af4c3fbc6d3bbc3d750f1099631e690e7df
parent22220ae216b11644b23511c6287a52e7d28aeb9f (diff)
downloadcpython-git-0ff8a3b374286d2218fc18f47556a5ace202dad3.tar.gz
Fix typo in typing.rst (GH-22625)
-rw-r--r--Doc/library/typing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index f4b2718cdc..6111603a99 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`).