diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 61d29df5465..867074a2826 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1299,13 +1299,13 @@ groups from right to left). +-----------------------------------------------+-------------------------------------+ | ``**`` | Exponentiation | +-----------------------------------------------+-------------------------------------+ -| ``x.attribute`` | Attribute reference | -+-----------------------------------------------+-------------------------------------+ | ``x[index]`` | Subscription | +-----------------------------------------------+-------------------------------------+ | ``x[index:index]`` | Slicing | +-----------------------------------------------+-------------------------------------+ -| ``f(arguments...)`` | Function call | +| ``x(arguments...)`` | Call | ++-----------------------------------------------+-------------------------------------+ +| ``x.attribute`` | Attribute reference | +-----------------------------------------------+-------------------------------------+ | ``(expressions...)`` | Binding or tuple display | +-----------------------------------------------+-------------------------------------+