Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3299ea9

Browse files
authored
[valarray.access,c.math.lerp] Add spaces around operators (#7886)
1 parent 81bb953 commit 3299ea9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/numerics.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7596,9 +7596,9 @@
75967596

75977597
\pnum
75987598
\remarks
7599-
The expression \tcode{addressof(a[i+j]) == addressof(a[i]) + j}
7599+
The expression \tcode{addressof(a[i + j]) == addressof(a[i]) + j}
76007600
evaluates to \tcode{true} for all \tcode{size_t i} and \tcode{size_t j}
7601-
such that \tcode{i+j < a.size()}.
7601+
such that \tcode{i + j < a.size()}.
76027602

76037603
\pnum
76047604
The expression \tcode{addressof(a[i]) != addressof(b[j])}
@@ -9911,7 +9911,7 @@
99119911
\item If \tcode{t == 1}, then \tcode{r == b}.
99129912
\item If \tcode{t >= 0 \&\& t <= 1}, then \tcode{isfinite(r)}.
99139913
\item If \tcode{isfinite(t) \&\& a == b}, then \tcode{r == a}.
9914-
\item If \tcode{isfinite(t) || !isnan(t) \&\& b-a != 0}, then \tcode{!isnan(r)}.
9914+
\item If \tcode{isfinite(t) || !isnan(t) \&\& b - a != 0}, then \tcode{!isnan(r)}.
99159915
\end{itemize}
99169916
Let \tcode{\placeholder{CMP}(x,y)} be \tcode{1} if \tcode{x > y},
99179917
\tcode{-1} if \tcode{x < y}, and \tcode{0} otherwise.

0 commit comments

Comments
 (0)