diff options
author | Nice Zombies <nineteendo19d0@gmail.com> | 2024-04-22 14:57:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-22 14:57:46 (GMT) |
commit | 78ba4cb758ba1e40d27af6bc2fa15ed3e33a29d2 (patch) | |
tree | 4068cb55ac1ec0beae00009b8f9b8d74c2f002f5 | |
parent | 287d939ed4445089e8312ab44110cbb6b6306a5c (diff) | |
download | cpython-78ba4cb758ba1e40d27af6bc2fa15ed3e33a29d2.zip cpython-78ba4cb758ba1e40d27af6bc2fa15ed3e33a29d2.tar.gz cpython-78ba4cb758ba1e40d27af6bc2fa15ed3e33a29d2.tar.bz2 |
gh-118030: Group definitions for `ParamSpecArgs` and `ParamSpecKwargs` in `typing.rst` (#118154)
-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 2e71be7..d816e63 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -1972,7 +1972,7 @@ without the dedicated syntax, as documented below. * :ref:`annotating-callables` .. data:: ParamSpecArgs -.. data:: ParamSpecKwargs + ParamSpecKwargs Arguments and keyword arguments attributes of a :class:`ParamSpec`. The ``P.args`` attribute of a ``ParamSpec`` is an instance of ``ParamSpecArgs``, |