Skip to content

Commit 3ab4209

Browse files
author
Sofia Goryunova
committed
gh-117961: Fix matmul grammar in expression docs
1 parent c7b7ca2 commit 3ab4209

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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`

Lib/pydoc_data/topics.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)