Skip to content

Commit 300cc8c

Browse files
committed
Alternate list markers in list-table
1 parent a30747f commit 300cc8c

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

Doc/reference/lexical_analysis.rst

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -27,59 +27,59 @@ with links to sections that contain more information.
2727
.. list-table::
2828
:header-rows: 1
2929

30-
* * Character
31-
* Next token (or other relevant documentation)
30+
* - Character
31+
- Next token (or other relevant documentation)
3232

33-
* * * space
33+
* - * space
3434
* tab
3535
* formfeed
36-
* * :ref:`Whitespace <whitespace>`
36+
- * :ref:`Whitespace <whitespace>`
3737

38-
* * * CR, LF
39-
* * :ref:`New line <line-structure>`
38+
* - * CR, LF
39+
- * :ref:`New line <line-structure>`
4040
* :ref:`Indentation <indentation>`
4141

42-
* * * backslash (``\``)
43-
* * :ref:`Explicit line joining <explicit-joining>`
42+
* - * backslash (``\``)
43+
- * :ref:`Explicit line joining <explicit-joining>`
4444
* (Also significant in :ref:`string escape sequences <escape-sequences>`)
4545

46-
* * * hash (``#``)
47-
* * :ref:`Comment <comments>`
46+
* - * hash (``#``)
47+
- * :ref:`Comment <comments>`
4848

49-
* * * quote (``'``, ``"``)
50-
* * :ref:`String literal <strings>`
49+
* - * quote (``'``, ``"``)
50+
- * :ref:`String literal <strings>`
5151

52-
* * * ASCII letter (``a``-``z``, ``A``-``Z``)
52+
* - * ASCII letter (``a``-``z``, ``A``-``Z``)
5353
* non-ASCII character
54-
* * :ref:`Name <identifiers>`
54+
- * :ref:`Name <identifiers>`
5555
* Prefixed :ref:`string or bytes literal <strings>`
5656

57-
* * * underscore (``_``)
58-
* * :ref:`Name <identifiers>`
57+
* - * underscore (``_``)
58+
- * :ref:`Name <identifiers>`
5959
* (Can also be part of :ref:`numeric literals <numbers>`)
6060

61-
* * * number (``0``-``9``)
62-
* * :ref:`Numeric literal <numbers>`
61+
* - * number (``0``-``9``)
62+
- * :ref:`Numeric literal <numbers>`
6363

64-
* * * dot (``.``)
65-
* * :ref:`Numeric literal <numbers>`
64+
* - * dot (``.``)
65+
- * :ref:`Numeric literal <numbers>`
6666
* :ref:`Operator <operators>`
6767

68-
* * * question mark (``?``)
68+
* - * question mark (``?``)
6969
* dollar (``$``)
7070
*
7171
.. (the following uses zero-width space characters to render
7272
.. a literal backquote)
7373
7474
backquote (``​`​``)
7575
* control character
76-
* * Error (outside string literals and comments)
76+
- * Error (outside string literals and comments)
7777

78-
* * * other printing character
79-
* * :ref:`Operator or delimiter <operators>`
78+
* - * other printing character
79+
- * :ref:`Operator or delimiter <operators>`
8080

81-
* * * end of file
82-
* * :ref:`End marker <endmarker-token>`
81+
* - * end of file
82+
- * :ref:`End marker <endmarker-token>`
8383

8484

8585
.. _line-structure:

0 commit comments

Comments
 (0)