Skip to content

Commit 857b491

Browse files
Apply suggestions from code review
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
1 parent df61c65 commit 857b491

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/whatsnew/3.15.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,9 +188,9 @@ raise :exc:`SyntaxError`).
188188
:pep:`814`: Add frozendict built-in type
189189
----------------------------------------
190190

191-
A new public immutable type, :class:`frozendict`, is added to the :mod:`builtins` module.
191+
A new :term:`immutable` type, :class:`frozendict`, is added to the :mod:`builtins` module.
192192
It does not allow modification after creation. A ``frozendict`` is not a subclass of ``dict``;
193-
it inherits directly from ``object``. A ``frozendict`` is hashable (i.e., ``hash(frozendict)`` works)
193+
it inherits directly from ``object``. A ``frozendict`` is :term:`hashable`
194194
as long as all of its keys and values are hashable.
195195

196196
For example::

0 commit comments

Comments
 (0)