Skip to content

Commit bb777e7

Browse files
author
Johannes Laire
committed
[containers] Fix typos
1 parent 0289b1b commit bb777e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/containers.tex

Lines changed: 4 additions & 4 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
@@ -1989,7 +1989,7 @@
19891989
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)