[Python-checkins] Fix typo in typing doc (GH-21879)

Miss Islington (bot) webhook-mailer at python.org
Fri Aug 14 19:10:08 EDT 2020


https://github.com/python/cpython/commit/0a5b30d98913e84f80ecea2b861e96d8f67c89e9
commit: 0a5b30d98913e84f80ecea2b861e96d8f67c89e9
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-08-14T16:09:58-07:00
summary:

Fix typo in typing doc (GH-21879)


Automerge-Triggered-By: @gvanrossum
(cherry picked from commit fa5d7251987c70a9c5d58b59a0b36ac9287eaafa)

Co-authored-by: Irit Katriel <iritkatriel at yahoo.com>

files:
M Doc/library/typing.rst

diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 1467276d0141d..405562ba2a8f8 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -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
 



More information about the Python-checkins mailing list