summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorIrit Katriel <iritkatriel@yahoo.com>2020-08-14 23:01:36 (GMT)
committerGitHub <noreply@github.com>2020-08-14 23:01:36 (GMT)
commitfa5d7251987c70a9c5d58b59a0b36ac9287eaafa (patch)
tree35897d62de6d4cea08aa35aec6f3a64a9c7ab456 /Doc/library
parentbb0b08540cc93e56f3f1bde1b39ce086d9e35fe1 (diff)
downloadcpython-fa5d7251987c70a9c5d58b59a0b36ac9287eaafa.zip
cpython-fa5d7251987c70a9c5d58b59a0b36ac9287eaafa.tar.gz
cpython-fa5d7251987c70a9c5d58b59a0b36ac9287eaafa.tar.bz2
Fix typo in typing doc (GH-21879)
Automerge-Triggered-By: @gvanrossum
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/typing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 44b537f..8208680 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