Skip to content

Commit f605921

Browse files
committed
Fix sphinx errors
1 parent 03744a6 commit f605921

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Doc/library/typing.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2294,17 +2294,17 @@ without the dedicated syntax, as documented below.
22942294

22952295
.. rubric:: Unpacking
22962296

2297-
Type aliases support star unpacking using the ``*Alias`` syntax.
2298-
This is equivalent to using ``Unpack[Alias]`` directly:
2297+
Type aliases support star unpacking using the ``*Alias`` syntax.
2298+
This is equivalent to using ``Unpack[Alias]`` directly:
22992299

2300-
.. doctest::
2300+
.. doctest::
23012301

2302-
>>> type Alias = tuple[int, str]
2303-
>>> type Unpacked = tuple[bool, *Alias]
2304-
>>> Unpacked.__value__
2305-
tuple[bool, typing.Unpack[Alias]]
2302+
>>> type Alias = tuple[int, str]
2303+
>>> type Unpacked = tuple[bool, *Alias]
2304+
>>> Unpacked.__value__
2305+
tuple[bool, typing.Unpack[Alias]]
23062306

2307-
.. versionadded:: next
2307+
.. versionadded:: next
23082308

23092309

23102310
Other special directives

0 commit comments

Comments
 (0)