diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-08-14 23:10:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 23:10:14 (GMT) |
commit | 31bc45c4b275a0bfcb46e5a115276f1daa814523 (patch) | |
tree | 56a8bd8d45d6f137a39bc4a3f0eb8bbce10c795a /Doc | |
parent | 33d3c64095bcdf9066a3441f6dda5d2e2f4118a8 (diff) | |
download | cpython-31bc45c4b275a0bfcb46e5a115276f1daa814523.zip cpython-31bc45c4b275a0bfcb46e5a115276f1daa814523.tar.gz cpython-31bc45c4b275a0bfcb46e5a115276f1daa814523.tar.bz2 |
Fix typo in typing doc (GH-21879)
Automerge-Triggered-By: @gvanrossum
(cherry picked from commit fa5d7251987c70a9c5d58b59a0b36ac9287eaafa)
Co-authored-by: Irit Katriel <iritkatriel@yahoo.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/typing.rst | 2 |
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 |