Skip to content

Commit 3379a38

Browse files
committed
[algorithms] Add missing spaces after commas
1 parent b12cde1 commit 3379a38

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

source/algorithms.tex

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4192,7 +4192,7 @@
41924192
The first iterator \tcode{i} in the range \range{first}{last-count}
41934193
such that for every non-negative integer \tcode{n} less than \tcode{count}
41944194
the following corresponding conditions hold:
4195-
\tcode{*(i + n) == value, pred(*(i + n),value) != false}.
4195+
\tcode{*(i + n) == value, pred(*(i + n), value) != false}.
41964196
Returns \tcode{last} if no such iterator is found.
41974197

41984198
\pnum
@@ -9084,11 +9084,11 @@
90849084

90859085
// \ref{numeric.ops.gcd}, greatest common divisor
90869086
template<class M, class N>
9087-
constexpr common_type_t<M,N> gcd(M m, N n);
9087+
constexpr common_type_t<M, N> gcd(M m, N n);
90889088

90899089
// \ref{numeric.ops.lcm}, least common multiple
90909090
template<class M, class N>
9091-
constexpr common_type_t<M,N> lcm(M m, N n);
9091+
constexpr common_type_t<M, N> lcm(M m, N n);
90929092

90939093
// \ref{numeric.ops.midpoint}, midpoint
90949094
template<class T>
@@ -10020,7 +10020,6 @@
1002010020
\end{footnote}
1002110021
\end{itemize}
1002210022

10023-
1002410023
\pnum
1002510024
\effects
1002610025
For the overloads with no \tcode{ExecutionPolicy} and a non-empty range,
@@ -10089,7 +10088,7 @@
1008910088
\indexlibraryglobal{gcd}%
1009010089
\begin{itemdecl}
1009110090
template<class M, class N>
10092-
constexpr common_type_t<M,N> gcd(M m, N n);
10091+
constexpr common_type_t<M, N> gcd(M m, N n);
1009310092
\end{itemdecl}
1009410093

1009510094
\begin{itemdescr}
@@ -10124,7 +10123,7 @@
1012410123
\indexlibraryglobal{lcm}%
1012510124
\begin{itemdecl}
1012610125
template<class M, class N>
10127-
constexpr common_type_t<M,N> lcm(M m, N n);
10126+
constexpr common_type_t<M, N> lcm(M m, N n);
1012810127
\end{itemdecl}
1012910128

1013010129
\begin{itemdescr}
@@ -10138,8 +10137,7 @@
1013810137
$|\tcode{m}|$ and $|\tcode{n}|$
1013910138
are representable as a value of \tcode{common_type_t<M, N>}.
1014010139
The least common multiple of $|\tcode{m}|$ and $|\tcode{n}|$
10141-
is representable as a value of type \tcode{common_type_t<M,N>}.
10142-
10140+
is representable as a value of type \tcode{common_type_t<M, N>}.
1014310141

1014410142
\pnum
1014510143
\returns

0 commit comments

Comments
 (0)