]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-99662: fix typo in typing.TypeVarTuple docs (GH-99672)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 22 Nov 2022 04:09:49 +0000 (20:09 -0800)
committerGitHub <noreply@github.com>
Tue, 22 Nov 2022 04:09:49 +0000 (20:09 -0800)
(cherry picked from commit 1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2)

Co-authored-by: GabrielAnguita <60579349+GabrielAnguita@users.noreply.github.com>
Doc/library/typing.rst

index 9513842d1a0d23cf8b7acc861c827304876e495e..7fc0aa3a8e62868f413acc8baec454c4a68c892e 100644 (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