summaryrefslogtreecommitdiff
path: root/boost/algorithm/string/find.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/algorithm/string/find.hpp')
-rw-r--r--boost/algorithm/string/find.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/algorithm/string/find.hpp b/boost/algorithm/string/find.hpp
index cc99ca1c93..f2c2926b50 100644
--- a/boost/algorithm/string/find.hpp
+++ b/boost/algorithm/string/find.hpp
@@ -13,7 +13,7 @@
#include <boost/algorithm/string/config.hpp>
-#include <boost/range/iterator_range.hpp>
+#include <boost/range/iterator_range_core.hpp>
#include <boost/range/begin.hpp>
#include <boost/range/end.hpp>
#include <boost/range/iterator.hpp>
@@ -86,7 +86,7 @@ namespace boost {
//! Find first algorithm ( case insensitive )
/*!
- Search for the first occurence of the substring in the input.
+ Search for the first occurrence of the substring in the input.
Searching is case insensitive.
\param Input A string which will be searched.
@@ -293,7 +293,7 @@ namespace boost {
If the "token compress mode" is enabled, adjacent tokens are considered to be one match.
\param Input A input string.
- \param Pred An unary predicate to identify a token
+ \param Pred A unary predicate to identify a token
\param eCompress Enable/Disable compressing of adjacent tokens
\return
An \c iterator_range delimiting the match.