Ticket #10781: fix_typo.patch
File fix_typo.patch, 2.7 KB (added by , 8 years ago) |
---|
-
xpressive/include/boost/xpressive/regex_actions.hpp
a b 1159 1159 } 1160 1160 }; 1161 1161 1162 /// \brief \c as() is a lazy fun tion 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. 1163 1163 /// \tparam T The type to which to lexically cast the parameter. 1164 1164 /// \param a The lazy value to lexically cast. 1165 1165 /// \return A lazy object that, when evaluated, lexically casts its argument to the desired type. … … 1170 1170 return detail::make_function::impl<op::as<T> const, A const &>()((op::as<T>()), a); 1171 1171 } 1172 1172 1173 /// \brief \c static_cast_ is a lazy fun tion 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. 1174 1174 /// \tparam T The type to which to statically cast the parameter. 1175 1175 /// \param a The lazy value to statically cast. 1176 1176 /// \return A lazy object that, when evaluated, statically casts its argument to the desired type. … … 1181 1181 return detail::make_function::impl<op::static_cast_<T> const, A const &>()((op::static_cast_<T>()), a); 1182 1182 } 1183 1183 1184 /// \brief \c dynamic_cast_ is a lazy fun tion 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. 1185 1185 /// \tparam T The type to which to dynamically cast the parameter. 1186 1186 /// \param a The lazy value to dynamically cast. 1187 1187 /// \return A lazy object that, when evaluated, dynamically casts its argument to the desired type. … … 1192 1192 return detail::make_function::impl<op::dynamic_cast_<T> const, A const &>()((op::dynamic_cast_<T>()), a); 1193 1193 } 1194 1194 1195 /// \brief \c dynamic_cast_ is a lazy fun tion 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. 1196 1196 /// \tparam T The type to which to const-cast the parameter. 1197 1197 /// \param a The lazy value to const-cast. 1198 1198 /// \return A lazy object that, when evaluated, const-casts its argument to the desired type. … … 1466 1466 }; 1467 1467 #endif 1468 1468 1469 /// \brief A lazy fun tion for constructing objectsobjects of the specified type.1469 /// \brief A lazy function for constructing objects of the specified type. 1470 1470 /// \tparam T The type of object to construct. 1471 1471 /// \param args The arguments to the constructor. 1472 1472 /// \return A lazy object that, when evaluated, returns <tt>T(xs...)</tt>, where