Commit 7bcd9933 authored by Davis King's avatar Davis King

Fixed some spelling errors

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403571
parent dafc754c
......@@ -56,7 +56,7 @@ namespace dlib
- option_is_defined(option_name) == true
- T is not a pointer type
ensures
- all the arguments for the given option are convertable
- all the arguments for the given option are convertible
by string_cast<T>() to an object of type T.
throws
- std::bad_alloc
......@@ -83,8 +83,8 @@ namespace dlib
- first <= last
- T is not a pointer type
ensures
- all the arguments for the given option are convertable
by string_cast<T>() to an object of type T and the resuting value is
- all the arguments for the given option are convertible
by string_cast<T>() to an object of type T and the resulting value is
in the range first to last inclusive.
throws
- std::bad_alloc
......@@ -111,7 +111,7 @@ namespace dlib
- T is not a pointer type
ensures
- for each argument to the given option:
- this argument is convertable by string_cast<T>() to an object of
- this argument is convertible by string_cast<T>() to an object of
type T and the resulting value is equal to some element in the
arg_set array.
throws
......
......@@ -122,7 +122,7 @@ namespace dlib
);
/*!
requires
- T must be a dlib::matrix type or something convertable to a matrix via vector_to_matrix()
- T must be a dlib::matrix type or something convertible to a matrix via vector_to_matrix()
(e.g. a std::vector)
- is_vector(basis_samples) == true
- basis_samples.size() > 0
......
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