Skip to content

Commit

Permalink
[algorithms.parallel.exec],[alg.set.operations],[alg.min.max],[alg.c.…
Browse files Browse the repository at this point in the history
…library] remove empty parens (#2925)

When referring to a function, use its name, not a call expression.
  • Loading branch information
jwakely authored and jensmaurer committed Jun 11, 2019
1 parent 04e32a6 commit 7830d39
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/algorithms.tex
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@
which are specified as modifying the object.
\begin{note}
For example,
\tcode{swap()},
\tcode{swap},
\tcode{++},
\tcode{--},
\tcode{@=}, and
Expand Down Expand Up @@ -7018,9 +7018,9 @@
They also work with \tcode{multiset}s\iref{multiset}
containing multiple copies of equivalent elements.
The semantics of the set operations are generalized to \tcode{multiset}s
in a standard way by defining \tcode{set_union()}
in a standard way by defining \tcode{set_union}
to contain the maximum number of occurrences of every element,
\tcode{set_intersection()} to contain the minimum, and so on.
\tcode{set_intersection} to contain the minimum, and so on.

\rSec3[includes]{\tcode{includes}}

Expand Down Expand Up @@ -8202,7 +8202,7 @@
\tcode{\{m, M\}}, where \tcode{m} is
the first iterator in \range{first}{last} such that no iterator in the range refers
to a smaller element, and where \tcode{M} is the last iterator\footnote{This behavior
intentionally differs from \tcode{max_element()}.}
intentionally differs from \tcode{max_element}.}
in \range{first}{last} such that no iterator in the range refers to a larger element.

\pnum
Expand Down Expand Up @@ -9816,7 +9816,7 @@

\pnum
\throws
Any exception thrown by \tcode{compar()}\iref{res.on.exception.handling}.
Any exception thrown by \tcode{compar}\iref{res.on.exception.handling}.
\end{itemdescr}

\xref
Expand Down

0 comments on commit 7830d39

Please sign in to comment.