diff options
author | GabrielAnguita <60579349+GabrielAnguita@users.noreply.github.com> | 2022-11-22 01:02:55 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-21 20:02:55 -0800 |
commit | 1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2 (patch) | |
tree | 41196aa57d3a013bfea99d06e5e09bf2e0dba8d7 | |
parent | 2781ec9b0e41a62cecc189c22dfc849f9a56927c (diff) | |
download | cpython-git-1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2.tar.gz |
gh-99662: fix typo in typing.TypeVarTuple docs (#99672)
-rw-r--r-- | Doc/library/typing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 0ec4499f94..94c9cb11f0 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 |