aboutsummaryrefslogtreecommitdiffstats
path: root/man7/operator.7
diff options
context:
space:
mode:
Diffstat (limited to 'man7/operator.7')
-rw-r--r--man7/operator.78
1 files changed, 4 insertions, 4 deletions
diff --git a/man7/operator.7 b/man7/operator.7
index 7b790a90fc..ba90226ffb 100644
--- a/man7/operator.7
+++ b/man7/operator.7
@@ -44,10 +44,10 @@ This manual page lists C operators and their precedence in evaluation.
.nf
.B "Operator Associativity"
-() [] -> . left to right
-! ~ ++ -- + - (type) * & sizeof right to left
+() [] \-> . left to right
+! ~ ++ \-\- + \- (type) * & sizeof right to left
* / % left to right
-+ - left to right
++ \- left to right
<< >> left to right
< <= > >= left to right
== != left to right
@@ -57,7 +57,7 @@ This manual page lists C operators and their precedence in evaluation.
&& left to right
|| left to right
?: right to left
-= += -= *= /= %= <<= >>= &= ^= |= right to left
+= += \-= *= /= %= <<= >>= &= ^= |= right to left
, left to right
.fi
.\"