Skip to content

Commit d4ef256

Browse files
authored
[expr.pre,conv.general] Add spaces around operators (#7903)
1 parent cb25f9b commit d4ef256

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/expressions.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
obey the rules for syntax and evaluation order specified in \ref{expr.compound},
4040
but the requirements of operand type and value category are replaced
4141
by the rules for function call. Relations between operators, such as
42-
\tcode{++a} meaning \tcode{a+=1}, are not guaranteed for overloaded
42+
\tcode{++a} meaning \tcode{a += 1}, are not guaranteed for overloaded
4343
operators\iref{over.oper}.
4444
\end{note}
4545

@@ -556,7 +556,7 @@
556556
\pnum
557557
An expression $E$ can be
558558
\defnx{implicitly converted}{conversion!implicit} to a type \tcode{T} if and only if the
559-
declaration \tcode{T t=$E$;} is well-formed, for some invented temporary
559+
declaration \tcode{T t = $E$;} is well-formed, for some invented temporary
560560
variable \tcode{t}\iref{dcl.init}.
561561

562562
\pnum

0 commit comments

Comments
 (0)