diff -u -r a/regex/doc/history.qbk b/regex/doc/history.qbk --- a/regex/doc/history.qbk 2014-09-25 03:54:14.000000000 +0900 +++ b/regex/doc/history.qbk 2014-10-21 10:19:41.000000000 +0900 @@ -25,7 +25,7 @@ * 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 @@ * 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 -u -r a/regex/doc/regex_split.qbk b/regex/doc/regex_split.qbk --- a/regex/doc/regex_split.qbk 2014-09-25 03:54:14.000000000 +0900 +++ b/regex/doc/regex_split.qbk 2014-10-21 10:26:57.000000000 +0900 @@ -87,7 +87,7 @@ 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 -u -r a/regex/doc/syntax_basic.qbk b/regex/doc/syntax_basic.qbk --- a/regex/doc/syntax_basic.qbk 2014-09-25 03:54:14.000000000 +0900 +++ b/regex/doc/syntax_basic.qbk 2014-10-21 10:30:48.000000000 +0900 @@ -156,7 +156,7 @@ 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 -u -r a/regex/include/boost/regex/v4/regex_workaround.hpp b/regex/include/boost/regex/v4/regex_workaround.hpp --- a/regex/include/boost/regex/v4/regex_workaround.hpp 2014-09-25 03:54:14.000000000 +0900 +++ b/regex/include/boost/regex/v4/regex_workaround.hpp 2014-10-21 08:39:37.000000000 +0900 @@ -71,7 +71,7 @@ /***************************************************************************** * - * Fix broken broken namespace support: + * Fix broken namespace support: * ****************************************************************************/