diff --git a/doc/history.qbk b/doc/history.qbk index d190debb..aebaee81 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -25,7 +25,7 @@ this gets bumped up from v4 to v5. * Fixed documentation typos from [@https://svn.boost.org/trac/boost/ticket/9283 #9283]. * Fixed bug in collation code that failed if the locale generated collation strings with embedded nul's, see [@https://svn.boost.org/trac/boost/ticket/9451 #9451]. -* Apply patch for unusual thread usage (no statically initiallized mutexes), see [@https://svn.boost.org/trac/boost/ticket/9461 #9461]. +* Apply patch for unusual thread usage (no statically initialized mutexes), see [@https://svn.boost.org/trac/boost/ticket/9461 #9461]. * Added better checks for invalid UTF-8 sequences, see [@https://svn.boost.org/trac/boost/ticket/9473 #9473]. [h4 Boost-1.54] @@ -153,7 +153,7 @@ and * Breaking Change: POSIX-extended and POSIX-basic regular expressions now enforce the letter of the POSIX standard much more closely than before. * Added support for (?imsx-imsx) constructs. * Added support for lookbehind expressions (?<=positive-lookbehind) and (?& v, std::string& s, boost::match_flag_type flags = match_default, unsigned max_count = ~0);`] [Splits the input string and pushes each one onto the vector. diff --git a/doc/regex_split.qbk b/doc/regex_split.qbk index d05e7f05..75543952 100644 --- a/doc/regex_split.qbk +++ b/doc/regex_split.qbk @@ -87,7 +87,7 @@ from a html file, and print them out to cout: char c; while(is.get(c)) { - // use logarithmic growth stategy, in case + // use logarithmic growth strategy, in case // in_avail (above) returned zero: if(s.capacity() == s.size()) s.reserve(s.capacity() * 3); diff --git a/doc/syntax_basic.qbk b/doc/syntax_basic.qbk index 019d731a..c3741934 100644 --- a/doc/syntax_basic.qbk +++ b/doc/syntax_basic.qbk @@ -156,7 +156,7 @@ An expression of the form `[[.col.]` matches the collating element /col/. A collating element is any single character, or any sequence of characters that collates as a single unit. Collating elements may also be used as the end point of a range, for example: `[[.ae.]-c]` matches -the character sequence "ae", plus any single character in the rangle "ae"-c, +the character sequence "ae", plus any single character in the range "ae"-c, assuming that "ae" is treated as a single collating element in the current locale. Collating elements may be used in place of escapes (which are not diff --git a/include/boost/regex/v4/regex_workaround.hpp b/include/boost/regex/v4/regex_workaround.hpp index 46a8a8d3..fc57472a 100644 --- a/include/boost/regex/v4/regex_workaround.hpp +++ b/include/boost/regex/v4/regex_workaround.hpp @@ -71,7 +71,7 @@ using std::distance; /***************************************************************************** * - * Fix broken broken namespace support: + * Fix broken namespace support: * ****************************************************************************/