gh-99662: fix typo in typing.TypeVarTuple docs (GH-99672)

(cherry picked from commit 1bf983ce7e)

Co-authored-by: GabrielAnguita <60579349+GabrielAnguita@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2022-11-21 20:09:49 -08:00 committed by GitHub
parent a3480ec795
commit 05147dc383
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1339,7 +1339,7 @@ These are not used in annotations. They are building blocks for creating generic
``Unpack[Ts]``.)
Type variable tuples must *always* be unpacked. This helps distinguish type
variable types from normal type variables::
variable tuples from normal type variables::
x: Ts # Not valid
x: tuple[Ts] # Not valid