From fa5d7251987c70a9c5d58b59a0b36ac9287eaafa Mon Sep 17 00:00:00 2001 From: Irit Katriel Date: Sat, 15 Aug 2020 00:01:36 +0100 Subject: [PATCH] Fix typo in typing doc (GH-21879) Automerge-Triggered-By: @gvanrossum --- 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 44b537f1669e1a..8208680669de6e 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -325,7 +325,7 @@ every type as being compatible with :data:`Any` and :data:`Any` as being compatible with every type. This means that it is possible to perform any operation or method call on a -value of type on :data:`Any` and assign it to any variable:: +value of type :data:`Any` and assign it to any variable:: from typing import Any