Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/algorithms.tex
Original file line number Diff line number Diff line change
Expand Up @@ -5943,7 +5943,7 @@

\pnum
\effects
For a nonempty range, eliminates all but the first element
For a non-empty range, eliminates all but the first element
from every consecutive group of equivalent elements referred to
by the iterator \tcode{i} in the range \range{first + 1}{last}
for which $E$ is \tcode{true}.
Expand All @@ -5958,7 +5958,7 @@

\pnum
\complexity
For nonempty ranges, exactly \tcode{(last - first) - 1} applications
For non-empty ranges, exactly \tcode{(last - first) - 1} applications
of the corresponding predicate and
no more than twice as many applications of any projection.
\end{itemdescr}
Expand Down
4 changes: 2 additions & 2 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -7719,7 +7719,7 @@
\effects
Erases all but the first element from every consecutive
group of equivalent elements.
That is, for a nonempty list, erases all elements referred to
That is, for a non-empty list, erases all elements referred to
by the iterator \tcode{i} in the range \range{begin() + 1}{end()}
for which \tcode{binary_pred(*i, *(i - 1))} is \tcode{true}.
Invalidates only the iterators and references to the erased elements.
Expand Down Expand Up @@ -8465,7 +8465,7 @@
\effects
Erases all but the first element from every
consecutive group of equivalent elements.
That is, for a nonempty list, erases all elements referred to
That is, for a non-empty list, erases all elements referred to
by the iterator \tcode{i} in the range \range{begin() + 1}{end()}
for which \tcode{binary_pred(*i, *(i - 1))} is \tcode{true}.
Invalidates only the iterators and references to the erased elements.
Expand Down
2 changes: 1 addition & 1 deletion source/lex.tex
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
comment.
\end{footnote}
Each comment is replaced by one space character. New-line characters are
retained. Whether each nonempty sequence of whitespace characters other
retained. Whether each non-empty sequence of whitespace characters other
than new-line is retained or replaced by one space character is
unspecified.
As characters from the source file are consumed
Expand Down