From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 14 Aug 2020 23:09:58 +0000 (-0700) Subject: Fix typo in typing doc (GH-21879) X-Git-Tag: v3.8.6rc1~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a5b30d98913e84f80ecea2b861e96d8f67c89e9;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 1467276d0141..405562ba2a8f 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -324,7 +324,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