diff options
author | GabrielAnguita <60579349+GabrielAnguita@users.noreply.github.com> | 2022-11-22 04:02:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 04:02:55 (GMT) |
commit | 1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2 (patch) | |
tree | 41196aa57d3a013bfea99d06e5e09bf2e0dba8d7 | |
parent | 2781ec9b0e41a62cecc189c22dfc849f9a56927c (diff) | |
download | cpython-1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2.zip cpython-1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2.tar.gz cpython-1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2.tar.bz2 |
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 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 |