Skip to content

Commit 7ed40a1

Browse files
author
Johannes Laire
committed
[containers] Fix typos
1 parent 464156d commit 7ed40a1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/containers.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@
290290
\tcode{end()}
291291
returns an iterator which is the past-the-end value for the container.
292292
If the container is empty, then
293-
\tcode{begin() == end()};
293+
\tcode{begin() == end()}.
294294

295295
\pnum
296296
In the expressions
@@ -989,7 +989,7 @@
989989
\begin{codeblock}
990990
template <class InputIterator>
991991
X(InputIterator first, InputIterator last,
992-
const allocator_type& alloc = allocator_type())
992+
const allocator_type& alloc = allocator_type());
993993
\end{codeblock}
994994

995995
is called with a type \tcode{InputIterator} that does not qualify as an input
@@ -1979,17 +1979,17 @@
19791979
\tcode{i}
19801980
to
19811981
\tcode{j}
1982-
is positive,
1982+
is positive, the following condition holds:
19831983

19841984
\begin{codeblock}
19851985
value_comp(*j, *i) == false
19861986
\end{codeblock}
19871987

19881988
\pnum
1989-
For associative containers with unique keys the stronger condition holds,
1989+
For associative containers with unique keys the stronger condition holds:
19901990

19911991
\begin{codeblock}
1992-
value_comp(*i, *j) != false.
1992+
value_comp(*i, *j) != false
19931993
\end{codeblock}
19941994

19951995
\pnum
@@ -2398,7 +2398,7 @@
23982398
and \tcode{CopyAssignable}.\br
23992399
\effects\ Assigns the range \range{il.begin()}{il.end()} into \tcode{a}. All
24002400
existing elements of \tcode{a} are either assigned to or destroyed.
2401-
& Same as \tcode{a = X(il).}
2401+
& Same as \tcode{a = X(il)}.
24022402
\\ \rowsep
24032403
%
24042404
\tcode{b.hash_function()}

0 commit comments

Comments
 (0)