]> 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:10:14 +0000 (16:10 -0700)
committerGitHub <noreply@github.com>
Fri, 14 Aug 2020 23:10:14 +0000 (16:10 -0700)
Automerge-Triggered-By: @gvanrossum
(cherry picked from commit fa5d7251987c70a9c5d58b59a0b36ac9287eaafa)

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

index 44b537f1669e1aeeb4c6ea197b1967d045d71686..8208680669de6e251fce1fd5e8672e7eb15f1e61 100644 (file)
@@ -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