bpo-33847: Add '@' operator entry to index (GH-7669)
(cherry picked from commit 695118600fecaa7b95634e168ad7cbbc561fd1ec)
Co-authored-by: Andrés Delfino <adelfino@gmail.com>
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index ad8613b..83cf738 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -1144,7 +1144,9 @@
common type and then multiplied together. In the latter case, sequence
repetition is performed; a negative repetition factor yields an empty sequence.
-.. index:: single: matrix multiplication
+.. index::
+ single: matrix multiplication
+ operator: @
The ``@`` (at) operator is intended to be used for matrix multiplication. No
builtin Python types implement this operator.