Skip to content

Commit c5d1fbd

Browse files
authored
[3.12] typing docs: fix indentation of TypedDict deprecation notice (#120124)
1 parent 376c734 commit c5d1fbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/library/typing.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2203,9 +2203,9 @@ types.
22032203

22042204
Point2D = TypedDict('Point2D', x=int, y=int, label=str)
22052205

2206-
.. deprecated-removed:: 3.11 3.13
2207-
The keyword-argument syntax is deprecated in 3.11 and will be removed
2208-
in 3.13. It may also be unsupported by static type checkers.
2206+
.. deprecated-removed:: 3.11 3.13
2207+
The keyword-argument syntax is deprecated in 3.11 and will be removed
2208+
in 3.13. It may also be unsupported by static type checkers.
22092209

22102210
The functional syntax should also be used when any of the keys are not valid
22112211
:ref:`identifiers <identifiers>`, for example because they are keywords or contain hyphens.

0 commit comments

Comments
 (0)