File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ The new inline syntax can be used to resolve these problems::
7575 ...
7676
7777While 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
229229Pyright added support for the new syntax in version `1.1.387 `_.
230230
@@ -235,7 +235,7 @@ Runtime implementation
235235
236236The 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
241241Rejected Ideas
You can’t perform that action at this time.
0 commit comments