Spellchecker applied

[SVN r23562]
This commit is contained in:
Pavol Droba
2004-07-14 22:24:12 +00:00
parent dd8d053685
commit cc683155c7
14 changed files with 136 additions and 136 deletions

View File

@ -24,7 +24,7 @@
In addition the algorithm \c all() checks all elements of a container to satisfy a
condition.
All predicates provide strong exception guarantie if input parameters satisfy
All predicates provide strong exception guarantee if input parameters satisfy
second assumption about exception safety.
*/
@ -45,9 +45,9 @@ namespace boost {
\param Comp An element comparison predicate
\return A result of the test
\note If the input paramters satisfy the second assumption
\note If the input parameters satisfy the second assumption
about exception safety, this function provides strong
exception guarantie.
exception guarantee.
*/
template<typename Collection1T, typename Collection2T, typename PredicateT>
inline bool starts_with(
@ -99,9 +99,9 @@ namespace boost {
\param Loc a locale used for case insensitive comparison
\return A result of the test
\note If the input paramters satisfy the second assumption
\note If the input parameters satisfy the second assumption
about exception safety, this function provides strong
exception guarantie.
exception guarantee.
*/
template<typename Collection1T, typename Collection2T>
inline bool istarts_with(
@ -128,9 +128,9 @@ namespace boost {
\param Comp An element comparison predicate
\return A result of the test
\note If the input paramters satisfy the second assumption
\note If the input parameters satisfy the second assumption
about exception safety, this function provides strong
exception guarantie.
exception guarantee.
*/
template<typename Collection1T, typename Collection2T, typename PredicateT>
inline bool ends_with(
@ -177,9 +177,9 @@ namespace boost {
\param Loc a locale used for case insensitive comparison
\return A result of the test
\note If the input paramters satisfy the second assumption
\note If the input parameters satisfy the second assumption
about exception safety, this function provides strong
exception guarantie.
exception guarantee.
*/
template<typename Collection1T, typename Collection2T>
inline bool iends_with(
@ -203,9 +203,9 @@ namespace boost {
\param Comp An element comparison predicate
\return A result of the test
\note If the input paramters satisfy the second assumption
\note If the input parameters satisfy the second assumption
about exception safety, this function provides strong
exception guarantie.
exception guarantee.
*/
template<typename Collection1T, typename Collection2T, typename PredicateT>
inline bool contains(
@ -244,9 +244,9 @@ namespace boost {
\param Loc a locale used for case insensitive comparison
\return A result of the test
\note If the input paramters satisfy the second assumption
\note If the input parameters satisfy the second assumption
about exception safety, this function provides strong
exception guarantie.
exception guarantee.
*/
template<typename Collection1T, typename Collection2T>
inline bool icontains(
@ -273,9 +273,9 @@ namespace boost {
\note This is two-way version of \c std::equal algorithm
\note If the input paramters satisfy the second assumption
\note If the input parameters satisfy the second assumption
about exception safety, this function provides strong
exception guarantie.
exception guarantee.
*/
template<typename Collection1T, typename Collection2T, typename PredicateT>
inline bool equals(
@ -329,9 +329,9 @@ namespace boost {
\note This is two-way version of \c std::equal algorithm
\note If the input paramters satisfy the second assumption
\note If the input parameters satisfy the second assumption
about exception safety, this function provides strong
exception guarantie.
exception guarantee.
*/
template<typename Collection1T, typename Collection2T>
inline bool iequals(
@ -353,9 +353,9 @@ namespace boost {
\param Pred A predicate
\return A result of the test
\note If the input paramters satisfy the second assumption
\note If the input parameters satisfy the second assumption
about exception safety, this function provides strong
exception guarantie.
exception guarantee.
*/
template<typename CollectionT, typename PredicateT>
inline bool all(