summaryrefslogtreecommitdiff
path: root/Doc/library/dataclasses.rst
diff options
context:
space:
mode:
authorRam Rachum <ram@rachum.com>2022-12-05 20:56:13 +0200
committerGitHub <noreply@github.com>2022-12-05 13:56:13 -0500
commit51ee0a29e9b20c3e4a94a675e73a894ee2fe447b (patch)
treee0676479fedc683c6a5e68f95dea4005223d66d9 /Doc/library/dataclasses.rst
parent124ecd657646f808d1d3282c37ee19aae6bcb47f (diff)
downloadcpython-git-51ee0a29e9b20c3e4a94a675e73a894ee2fe447b.tar.gz
dataclasses.rst: Prevent horizontal scrolling (gh-100025)
Diffstat (limited to 'Doc/library/dataclasses.rst')
-rw-r--r--Doc/library/dataclasses.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst
index 847299649d..32c524a734 100644
--- a/Doc/library/dataclasses.rst
+++ b/Doc/library/dataclasses.rst
@@ -79,7 +79,8 @@ Module contents
class C:
...
- @dataclass(init=True, repr=True, eq=True, order=False, unsafe_hash=False, frozen=False, match_args=True, kw_only=False, slots=False, weakref_slot=False)
+ @dataclass(init=True, repr=True, eq=True, order=False, unsafe_hash=False, frozen=False,
+ match_args=True, kw_only=False, slots=False, weakref_slot=False)
class C:
...