Skip to content

Commit 0554044

Browse files
authored
bpo-43415: Fix typo on dataclasses.rst (#24789)
1 parent 9f672a5 commit 0554044

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/dataclasses.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Module-level decorators, classes, and functions
136136
attribute ``__hash__ = None`` has a specific meaning to Python, as
137137
described in the :meth:`__hash__` documentation.
138138

139-
If :meth:`__hash__` is not explicit defined, or if it is set to ``None``,
139+
If :meth:`__hash__` is not explicitly defined, or if it is set to ``None``,
140140
then :func:`dataclass` *may* add an implicit :meth:`__hash__` method.
141141
Although not recommended, you can force :func:`dataclass` to create a
142142
:meth:`__hash__` method with ``unsafe_hash=True``. This might be the case

0 commit comments

Comments
 (0)