PEP 604: Fix typo and grammar issues reported by Brett

This commit is contained in:
Guido van Rossum 2020-08-13 16:22:19 -07:00
parent 6c2e277b08
commit dd89f72d8a
1 changed files with 2 additions and 2 deletions

View File

@ -176,8 +176,8 @@ PROS:
CONS:
- Adding this operator introduce a dependency between ``typing`` and ``builtins``
- As breaking the backport (in that ``typing`` can easily be backported but core ``types`` can't)
- Adding this operator introduces a dependency between ``typing`` and ``builtins``
- Breaks the backport (in that ``typing`` can easily be backported but core ``types`` can't)
- If Python itself doesn't have to be changed, we'd still need to implement it in mypy, Pyre, PyCharm,
Pytype, and who knows what else (it's a minor change see "Reference Implementation")