Skip to content

Commit ea418fd

Browse files
committed
Feedback
1 parent bf624a5 commit ea418fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

peps/pep-0764.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The new inline syntax can be used to resolve these problems::
7575
...
7676

7777
While less useful (as the functional or even the class-based syntax can be
78-
used), inline type dictionaries can be assigned to a variable, as an alias::
78+
used), inline typed dictionaries can be assigned to a variable, as an alias::
7979

8080
InlineTD = TypedDict[{'name': str}]
8181

@@ -224,7 +224,7 @@ Mypy supports a similar syntax as an :option:`experimental feature <mypy:mypy.--
224224
def test_values() -> {"int": int, "str": str}:
225225
return {"int": 42, "str": "test"}
226226

227-
Support for this PEP is added in `this pull request <https://github.com/python/mypy/pull/18889>`_.
227+
Support for this PEP is added in `this pull request <https://github.com/python/mypy/pull/18889>`__.
228228

229229
Pyright added support for the new syntax in version `1.1.387`_.
230230

@@ -235,7 +235,7 @@ Runtime implementation
235235

236236
The necessary changes were first implemented in
237237
`typing_extensions <https://typing-extensions.readthedocs.io/en/latest/>`_
238-
in `this pull request <https://github.com/python/typing_extensions/pull/580>`_.
238+
in `this pull request <https://github.com/python/typing_extensions/pull/580>`__.
239239

240240

241241
Rejected Ideas

0 commit comments

Comments
 (0)