From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 14 Aug 2020 23:10:14 +0000 (-0700) Subject: Fix typo in typing doc (GH-21879) X-Git-Tag: v3.9.0rc2~88 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31bc45c4b275a0bfcb46e5a115276f1daa814523;p=thirdparty%2FPython%2Fcpython.git Fix typo in typing doc (GH-21879) Automerge-Triggered-By: @gvanrossum (cherry picked from commit fa5d7251987c70a9c5d58b59a0b36ac9287eaafa) Co-authored-by: Irit Katriel --- 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