]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in typing doc (GH-21879)
authorIrit Katriel <iritkatriel@yahoo.com>
Fri, 14 Aug 2020 23:01:36 +0000 (00:01 +0100)
committerGitHub <noreply@github.com>
Fri, 14 Aug 2020 23:01:36 +0000 (16:01 -0700)
Automerge-Triggered-By: @gvanrossum
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