Skip to content

Commit 9f929bb

Browse files
committed
python#16677: rename section header and fix markup.
1 parent 405faed commit 9f929bb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Doc/reference/expressions.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,8 +1266,8 @@ their suffixes::
12661266

12671267
.. _operator-summary:
12681268

1269-
Summary
1270-
=======
1269+
Operator precedence
1270+
===================
12711271

12721272
.. index:: pair: operator; precedence
12731273

@@ -1291,9 +1291,9 @@ groups from right to left).
12911291
+-----------------------------------------------+-------------------------------------+
12921292
| :keyword:`and` | Boolean AND |
12931293
+-----------------------------------------------+-------------------------------------+
1294-
| :keyword:`not` *x* | Boolean NOT |
1294+
| :keyword:`not` ``x`` | Boolean NOT |
12951295
+-----------------------------------------------+-------------------------------------+
1296-
| :keyword:`in`, :keyword:`not` :keyword:`in`, | Comparisons, including membership |
1296+
| :keyword:`in`, :keyword:`not in`, | Comparisons, including membership |
12971297
| :keyword:`is`, :keyword:`is not`, ``<``, | tests and identity tests, |
12981298
| ``<=``, ``>``, ``>=``, ``!=``, ``==`` | |
12991299
+-----------------------------------------------+-------------------------------------+
@@ -1319,7 +1319,7 @@ groups from right to left).
13191319
+-----------------------------------------------+-------------------------------------+
13201320
| ``(expressions...)``, | Binding or tuple display, |
13211321
| ``[expressions...]``, | list display, |
1322-
| ``{key:datum...}``, | dictionary display, |
1322+
| ``{key: value...}``, | dictionary display, |
13231323
| ``{expressions...}`` | set display |
13241324
+-----------------------------------------------+-------------------------------------+
13251325

0 commit comments

Comments
 (0)