Skip to content

Commit 1685d2f

Browse files
committed
Address Nathan's review
1 parent de14e1a commit 1685d2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

peps/pep-0814.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ keys and values. Pseudo-code of ``hash(frozendict)``::
104104

105105
hash(frozenset(frozendict.items()))
106106

107-
Equality test does not depend on the items' order neither. Example::
107+
Equality test does not depend on the items' order either. Example::
108108

109109
>>> a = frozendict(x=1, y=2)
110110
>>> b = frozendict(y=2, x=1)
@@ -233,7 +233,7 @@ Replace ``dict`` with ``frozendict`` for constants:
233233
Relationship to PEP 416 frozendict
234234
==================================
235235

236-
Since 2012 (:pep:`416`), the Python ecosystem evolved:
236+
Since 2012 (:pep:`416`), the Python ecosystem has evolved:
237237

238238
* ``asyncio`` was added in 2014 (Python 3.4)
239239
* Free threading was added in 2024 (Python 3.13)

0 commit comments

Comments
 (0)