Commit e021bb86 authored by Davis King's avatar Davis King

Fixed grammar.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403458
parent 4ceaf943
......@@ -13,7 +13,7 @@
This page documents library components that are all basically just implementations of
mathematical functions or algorithms that don't fit in any of the other pages
of the dlib documentation. So this includes things like checksums, cryptographic hashes,
optimization, sorting, etc...
optimization, sorting, etc.
</p>
</body>
......
......@@ -35,7 +35,7 @@
<p>
Note that it is assumed by these containers that swap() and operator&lt; do not throw. They
may not function correctly if this assumption is broken. Also note that the built in types (int, long,
char, etc...) and std::string will not cause operator&lt; or swap() to throw.
char, etc.) and std::string will not cause operator&lt; or swap() to throw.
</p>
<p>
......@@ -1051,7 +1051,7 @@
<spec_file>dlib/interfaces/map_pair.h</spec_file>
<description>
This object is an abstract class which represents an interface for accessing a
pair from a container such as the map, hash_table, etc...
pair from a container such as the map, hash_table, etc.
</description>
......@@ -1498,7 +1498,7 @@
<description>
This extension gives sequences the ability to compare themselves using
operator&lt; and operator==. Thus they can be used in the other container classes
that require this ability. (maps, sets, etc...)
that require this ability. (maps, sets, etc.)
</description>
<implementations>
......@@ -1575,7 +1575,7 @@
<description>
This extension gives sets the ability to compare themselves using operator&lt; and
operator==. Thus they can be used in the other container classes that require
this ability. (maps, sets, etc...)
this ability. (maps, sets, etc.)
</description>
<implementations>
......@@ -1717,7 +1717,7 @@
<description>
This extension gives static_sets the ability to compare themselves using operator&lt; and
operator==. Thus they can be used in the other container classes that require
this ability. (maps, static_sets, etc...)
this ability. (maps, static_sets, etc.)
</description>
<implementations>
......
......@@ -107,7 +107,7 @@
<li>Numerous linear algebra and mathematical operations are defined for the matrix object such as the
<a href="dlib/matrix/matrix_la_abstract.h.html#svd">singular value decomposition</a>,
<a href="dlib/matrix/matrix_utilities_abstract.h.html#trans">transpose</a>,
<a href="dlib/matrix/matrix_math_functions_abstract.h.html#sin">trig functions</a>, etc...</li>
<a href="dlib/matrix/matrix_math_functions_abstract.h.html#sin">trig functions</a>, etc.</li>
<li>Unconstrained non-linear optimization algorithms using the
<a href="algorithms.html#cg_search_strategy">conjugate gradient</a>,
<a href="algorithms.html#bfgs_search_strategy">BFGS</a>, and
......
......@@ -34,7 +34,7 @@
<p>
Generally speaking, there is no focus on any specific domain in the library. It contains a variety
of software objects for dealing with networking, threads (message passing, futures, etc...),
of software objects for dealing with networking, threads (message passing, futures, etc.),
graphical interfaces, complex data structures, linear algebra, machine learning, XML and text
parsing, numerical optimization, Bayesian networks, and numerous other tasks.
</p>
......@@ -120,7 +120,7 @@
<br/><br/><u>throws</u>: This defines what exceptions may be thrown by this function. It generally
tells you why the exception might be thrown. It also tells you what the function does in this event:
Does it have no effect at all? Does it corrupt any objects? etc...
Does it have no effect at all? Does it corrupt any objects? etc.
<br/>
<br/>
......@@ -247,7 +247,7 @@
<li/> <a href="dlib/queue.h.html">queue.h</a>
<ul> This file does not contain any executable code. All it does is define the typedefs such as
kernel_1a, kernel_1a_c, etc... for the queue object. See the <a href="#creating_objects">Creating Objects</a>
kernel_1a, kernel_1a_c, etc. for the queue object. See the <a href="#creating_objects">Creating Objects</a>
section to learn what these typedefs are for.
</ul>
......
......@@ -281,7 +281,7 @@
<spec_file link="true">dlib/algs.h</spec_file>
<description>
This is a template where is_built_in_scalar_type&lt;T&gt;::value == true when T
is a built in scalar type such as int, char, float, etc...
is a built in scalar type such as int, char, float, etc.
</description>
</component>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment