add matrix multiplication operator to correct lists (closes #22142)

This commit is contained in:
Benjamin Peterson 2014-08-06 22:50:30 -07:00
parent b40cf1f804
commit bd592417f4
1 changed files with 2 additions and 2 deletions

View File

@ -689,7 +689,7 @@ Operators
The following tokens are operators::
+ - * ** / // %
+ - * ** / // % @
<< >> & | ^ ~
< > <= >= == !=
@ -705,7 +705,7 @@ The following tokens serve as delimiters in the grammar::
( ) [ ] { }
, : . ; @ = ->
+= -= *= /= //= %=
+= -= *= /= //= %= @=
&= |= ^= >>= <<= **=
The period can also occur in floating-point and imaginary literals. A sequence