--- a/xpressive/include/boost/xpressive/regex_actions.hpp 2014-08-18 08:51:24.000000000 +0900 +++ b/xpressive/include/boost/xpressive/regex_actions.hpp 2014-11-11 10:11:03.000000000 +0900 @@ -1159,7 +1159,7 @@ } }; - /// \brief \c as() is a lazy funtion for lexically casting a parameter to a different type. + /// \brief \c as() is a lazy function for lexically casting a parameter to a different type. /// \tparam T The type to which to lexically cast the parameter. /// \param a The lazy value to lexically cast. /// \return A lazy object that, when evaluated, lexically casts its argument to the desired type. @@ -1170,7 +1170,7 @@ return detail::make_function::impl const, A const &>()((op::as()), a); } - /// \brief \c static_cast_ is a lazy funtion for statically casting a parameter to a different type. + /// \brief \c static_cast_ is a lazy function for statically casting a parameter to a different type. /// \tparam T The type to which to statically cast the parameter. /// \param a The lazy value to statically cast. /// \return A lazy object that, when evaluated, statically casts its argument to the desired type. @@ -1181,7 +1181,7 @@ return detail::make_function::impl const, A const &>()((op::static_cast_()), a); } - /// \brief \c dynamic_cast_ is a lazy funtion for dynamically casting a parameter to a different type. + /// \brief \c dynamic_cast_ is a lazy function for dynamically casting a parameter to a different type. /// \tparam T The type to which to dynamically cast the parameter. /// \param a The lazy value to dynamically cast. /// \return A lazy object that, when evaluated, dynamically casts its argument to the desired type. @@ -1192,7 +1192,7 @@ return detail::make_function::impl const, A const &>()((op::dynamic_cast_()), a); } - /// \brief \c dynamic_cast_ is a lazy funtion for const-casting a parameter to a different type. + /// \brief \c dynamic_cast_ is a lazy function for const-casting a parameter to a different type. /// \tparam T The type to which to const-cast the parameter. /// \param a The lazy value to const-cast. /// \return A lazy object that, when evaluated, const-casts its argument to the desired type. @@ -1466,7 +1466,7 @@ }; #endif - /// \brief A lazy funtion for constructing objects objects of the specified type. + /// \brief A lazy function for constructing objects of the specified type. /// \tparam T The type of object to construct. /// \param args The arguments to the constructor. /// \return A lazy object that, when evaluated, returns T(xs...), where