summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/typing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 0ec4499..94c9cb1 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