Skip to content

Commit 2ba30e1

Browse files
authored
[alg.find.first.of,alg.search,alg.unique] Insert spaces around operators for consistency (#7584)
1 parent a39cca2 commit 2ba30e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/algorithms.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4113,7 +4113,7 @@
41134113

41144114
\pnum
41154115
\complexity
4116-
At most \tcode{(last1-first1) * (last2-first2)} applications
4116+
At most \tcode{(last1 - first1) * (last2 - first2)} applications
41174117
of the corresponding predicate and any projections.
41184118
\end{itemdescr}
41194119

@@ -4606,7 +4606,7 @@
46064606
\begin{itemdescr}
46074607
\pnum
46084608
\returns
4609-
The first iterator \tcode{i} in the range \range{first1}{last1 - (last2-first2)}
4609+
The first iterator \tcode{i} in the range \range{first1}{last1 - (last2 - first2)}
46104610
such that
46114611
for every non-negative integer \tcode{n} less than \tcode{last2 - first2}
46124612
the following corresponding conditions hold:
@@ -4705,7 +4705,7 @@
47054705

47064706
\pnum
47074707
\returns
4708-
The first iterator \tcode{i} in the range \range{first}{last-count}
4708+
The first iterator \tcode{i} in the range \range{first}{last - count}
47094709
such that for every non-negative integer \tcode{n} less than \tcode{count}
47104710
the condition $E$ is true.
47114711
Returns \tcode{last} if no such iterator is found.
@@ -6260,7 +6260,7 @@
62606260
\expects
62616261
\begin{itemize}
62626262
\item
6263-
The ranges \range{first}{last} and \range{result}{result+(last-first)}
6263+
The ranges \range{first}{last} and \range{result}{result + (last - first)}
62646264
do not overlap.
62656265
\item
62666266
For the overloads in namespace \tcode{std}:

0 commit comments

Comments
 (0)