From 52cc9962f8a2217bae397a24d51e40e9c3b2e937 Mon Sep 17 00:00:00 2001 From: Gabriel Anguita Date: Mon, 21 Nov 2022 23:59:58 -0300 Subject: [PATCH] gh-99662: fixed typo in typing.TypeVarTuple docs --- 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 0ec4499f94f5a7..94c9cb11f02d6d 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