]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-99662: fix typo in typing.TypeVarTuple docs (#99672)
authorGabrielAnguita <60579349+GabrielAnguita@users.noreply.github.com>
Tue, 22 Nov 2022 04:02:55 +0000 (01:02 -0300)
committerGitHub <noreply@github.com>
Tue, 22 Nov 2022 04:02:55 +0000 (20:02 -0800)
Doc/library/typing.rst

index 0ec4499f94f5a7fa54f9947c8eefdb7391a6ce9c..94c9cb11f02d6d63df30e33749d01438ee214df5 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