PEP 646: Fix minor typo (#1769)

This commit is contained in:
Ken Jin 2021-01-20 01:58:41 +08:00 committed by GitHub
parent 13b8bb4c5d
commit 9d778c6b28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ A type variable tuple behaves in a similar way to a parameterized ``Tuple``.
For example, in a generic object instantiated with type parameters
``int`` and ``str``, ``Ts`` is equivalent to ``Tuple[int, str]``.
Type variable tuples can be used anywhere a normal ``TupleVar`` can.
Type variable tuples can be used anywhere a normal ``TypeVar`` can.
For example, in class definitions, function signatures, and variable annotations:
::