]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in typing doc (GH-21879)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 14 Aug 2020 23:09:58 +0000 (16:09 -0700)
committerGitHub <noreply@github.com>
Fri, 14 Aug 2020 23:09:58 +0000 (16:09 -0700)
Automerge-Triggered-By: @gvanrossum
(cherry picked from commit fa5d7251987c70a9c5d58b59a0b36ac9287eaafa)

Co-authored-by: Irit Katriel <iritkatriel@yahoo.com>
Doc/library/typing.rst

index 1467276d0141d0cfbcd78a4df06dcb35b4cad1d3..405562ba2a8f8938b8780d9c2a09c4e7e86063fe 100644 (file)
@@ -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