Skip to content

Commit 105b78e

Browse files
gpkcgvanrossum
authored andcommitted
Update builtin_types.rst (#4415)
The Markdown wasn't rendering the inline code correctly if it was not surrounded by spaces.
1 parent cbbde09 commit 105b78e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/builtin_types.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Type Description
1313
``bytes`` 8-bit string
1414
``object`` an arbitrary object (``object`` is the common base class)
1515
``List[str]`` list of ``str`` objects
16-
``Tuple[int, int]`` tuple of two ``int``s (``Tuple[()]`` is the empty tuple)
16+
``Tuple[int, int]`` tuple of two ``int`` objects (``Tuple[()]`` is the empty tuple)
1717
``Tuple[int, ...]`` tuple of an arbitrary number of ``int`` objects
1818
``Dict[str, int]`` dictionary from ``str`` keys to ``int`` values
1919
``Iterable[int]`` iterable object containing ints

0 commit comments

Comments
 (0)