From 3a1213726d37a808e3579bf68db59d63229fde5b Mon Sep 17 00:00:00 2001 From: GabrielAnguita <60579349+GabrielAnguita@users.noreply.github.com> Date: Tue, 22 Nov 2022 01:02:55 -0300 Subject: [PATCH] gh-99662: fix typo in typing.TypeVarTuple docs (GH-99672) (cherry picked from commit 1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2) Co-authored-by: GabrielAnguita <60579349+GabrielAnguita@users.noreply.github.com> --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 9513842d1a0d23..7fc0aa3a8e6286 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -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