From: Irit Katriel Date: Fri, 14 Aug 2020 23:01:36 +0000 (+0100) Subject: Fix typo in typing doc (GH-21879) X-Git-Tag: v3.10.0a1~249 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa5d7251987c70a9c5d58b59a0b36ac9287eaafa;p=thirdparty%2FPython%2Fcpython.git Fix typo in typing doc (GH-21879) Automerge-Triggered-By: @gvanrossum --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 44b537f1669e..8208680669de 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