Skip to content

Commit 3148133

Browse files
author
Johannes Laire
committed
Fix typos
1 parent 3b22c87 commit 3148133

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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()}

source/declarations.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1201,7 +1201,7 @@
12011201
\end{codeblock}
12021202

12031203
\pnum
1204-
For another example
1204+
For another example,
12051205

12061206
\begin{codeblock}
12071207
struct X {

source/utilities.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16004,7 +16004,7 @@
1600416004

1600516005
\tcode{template <bool B, class T,}
1600616006
\tcode{class F>}\br
16007-
\tcode{struct conditional};
16007+
\tcode{struct conditional;}
1600816008
&
1600916009
If \tcode{B} is \tcode{true}, the member typedef \tcode{type} shall equal \tcode{T}.
1601016010
If \tcode{B} is \tcode{false}, the member typedef \tcode{type} shall equal \tcode{F}. \\ \rowsep

0 commit comments

Comments
 (0)