Fix typo in typing doc (GH-21879)

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

Co-authored-by: Irit Katriel <iritkatriel@yahoo.com>
This commit is contained in:
Miss Islington (bot) 2020-08-14 16:09:58 -07:00 committed by GitHub
parent 2a9f709ba2
commit 0a5b30d989
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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