Ticket #10781: fix_typo.patch

File fix_typo.patch, 2.7 KB (added by anonymous, 8 years ago)
  • xpressive/include/boost/xpressive/regex_actions.hpp

    a b  
    11591159        }
    11601160    };
    11611161
    1162     /// \brief \c as() is a lazy funtion for lexically casting a parameter to a different type.
     1162    /// \brief \c as() is a lazy function for lexically casting a parameter to a different type.
    11631163    /// \tparam T The type to which to lexically cast the parameter.
    11641164    /// \param a The lazy value to lexically cast.
    11651165    /// \return A lazy object that, when evaluated, lexically casts its argument to the desired type.
     
    11701170        return detail::make_function::impl<op::as<T> const, A const &>()((op::as<T>()), a);
    11711171    }
    11721172
    1173     /// \brief \c static_cast_ is a lazy funtion for statically casting a parameter to a different type.
     1173    /// \brief \c static_cast_ is a lazy function for statically casting a parameter to a different type.
    11741174    /// \tparam T The type to which to statically cast the parameter.
    11751175    /// \param a The lazy value to statically cast.
    11761176    /// \return A lazy object that, when evaluated, statically casts its argument to the desired type.
     
    11811181        return detail::make_function::impl<op::static_cast_<T> const, A const &>()((op::static_cast_<T>()), a);
    11821182    }
    11831183
    1184     /// \brief \c dynamic_cast_ is a lazy funtion for dynamically casting a parameter to a different type.
     1184    /// \brief \c dynamic_cast_ is a lazy function for dynamically casting a parameter to a different type.
    11851185    /// \tparam T The type to which to dynamically cast the parameter.
    11861186    /// \param a The lazy value to dynamically cast.
    11871187    /// \return A lazy object that, when evaluated, dynamically casts its argument to the desired type.
     
    11921192        return detail::make_function::impl<op::dynamic_cast_<T> const, A const &>()((op::dynamic_cast_<T>()), a);
    11931193    }
    11941194
    1195     /// \brief \c dynamic_cast_ is a lazy funtion for const-casting a parameter to a different type.
     1195    /// \brief \c dynamic_cast_ is a lazy function for const-casting a parameter to a different type.
    11961196    /// \tparam T The type to which to const-cast the parameter.
    11971197    /// \param a The lazy value to const-cast.
    11981198    /// \return A lazy object that, when evaluated, const-casts its argument to the desired type.
     
    14661466    };
    14671467#endif
    14681468
    1469     /// \brief A lazy funtion for constructing objects objects of the specified type.
     1469    /// \brief A lazy function for constructing objects of the specified type.
    14701470    /// \tparam T The type of object to construct.
    14711471    /// \param args The arguments to the constructor.
    14721472    /// \return A lazy object that, when evaluated, returns <tt>T(xs...)</tt>, where