Skip to content

Commit 1c58d93

Browse files
authored
[expr.sub,expr.pre.incr] Add spaces around operators
1 parent f457f12 commit 1c58d93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/expressions.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3512,7 +3512,7 @@
35123512
\tcode{\&x[0]}.
35133513
\end{footnote}
35143514
The expression \tcode{E1[E2]} is identical (by definition) to
3515-
\tcode{*((E1)+(E2))},
3515+
\tcode{*((E1) + (E2))},
35163516
except that in the case of an array operand, the result is an lvalue
35173517
if that operand is an lvalue and an xvalue otherwise.
35183518

@@ -5134,8 +5134,8 @@
51345134
shall not be of type \cv{}~\tcode{bool}.
51355135
An operand with volatile-qualified type is deprecated;
51365136
see~\ref{depr.volatile.type}.
5137-
The expression \tcode{++x} is otherwise equivalent to \tcode{x+=1} and
5138-
the expression \tcode{--x} is otherwise equivalent to \tcode{x-=1}\iref{expr.assign}.
5137+
The expression \tcode{++x} is otherwise equivalent to \tcode{x += 1} and
5138+
the expression \tcode{--x} is otherwise equivalent to \tcode{x -= 1}\iref{expr.assign}.
51395139
\begin{note}
51405140
For postfix increment and decrement, see~\ref{expr.post.incr}.
51415141
\end{note}

0 commit comments

Comments
 (0)