PEP 593: Remove repeated word (#1716)

This commit is contained in:
Chris Hunt 2020-11-16 10:36:44 -05:00 committed by GitHub
parent b89ee281ed
commit d1141dd386
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ cause ``Annotated`` to not integrate cleanly with the other typing annotations:
* ``Annotated`` cannot infer the decorated type. You could imagine that
``Annotated[..., Immutable]`` could be used to mark a value as immutable
while still infering its type. Typing does not support support using the
while still infering its type. Typing does not support using the
inferred type anywhere else [issue-276]_; it's best to not add this as a
special case.