From 0ff8a3b374286d2218fc18f47556a5ace202dad3 Mon Sep 17 00:00:00 2001 From: abdo Date: Sun, 11 Oct 2020 09:10:21 +0300 Subject: [PATCH] Fix typo in typing.rst (GH-22625) --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index f4b2718cdc2..6111603a995 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`).