Fixed some spelling errors

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403571
This commit is contained in:
Davis King 2010-04-27 20:50:48 +00:00
parent dafc754cda
commit 7bcd9933c5
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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