diff --git a/man7/operator.7 b/man7/operator.7 index 22c107c7f..2770c5806 100644 --- a/man7/operator.7 +++ b/man7/operator.7 @@ -47,13 +47,13 @@ This manual page lists C operators and their precedence in evaluation. lb lb lb l l l. Operator Associativity Notes -() [] \-> . ++ \-\- left to right [1] -! \(ti ++ \-\- + \- * & sizeof right to left [2] +[] () . \-> ++ \-\- left to right [1] +++ \-\- & * + \- \(ti ! sizeof right to left [2] (type) right to left * / % left to right + \- left to right << >> left to right -< <= > >= left to right +< > <= >= left to right == != left to right & left to right \(ha left to right @@ -61,7 +61,7 @@ Operator Associativity Notes && left to right || left to right ?: right to left -= += \-= *= /= %= <<= >>= &= \(ha= |= right to left += *= /= %= += \-= <<= >>= &= \(ha= |= right to left , left to right .TE .PP