Skip to content

Commit 4bcd685

Browse files
Fix grammar production for multiplicative operators
1 parent 149c465 commit 4bcd685

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/reference/expressions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1567,7 +1567,7 @@ from the power operator, there are only two levels, one for multiplicative
15671567
operators and one for additive operators:
15681568

15691569
.. productionlist:: python-grammar
1570-
m_expr: `u_expr` | `m_expr` "*" `u_expr` | `m_expr` "@" `m_expr` |
1570+
m_expr: `u_expr` | `m_expr` "*" `u_expr` | `m_expr` "@" `u_expr` |
15711571
: `m_expr` "//" `u_expr` | `m_expr` "/" `u_expr` |
15721572
: `m_expr` "%" `u_expr`
15731573
a_expr: `m_expr` | `a_expr` "+" `m_expr` | `a_expr` "-" `m_expr`

0 commit comments

Comments
 (0)