diff --git a/doc/move.qbk b/doc/move.qbk index 07573f7..05f4baf 100644 --- a/doc/move.qbk +++ b/doc/move.qbk @@ -759,6 +759,7 @@ Many thanks to all boosters that have tested, reviewed and improved the library. * Added [macroref BOOST_MOVE_RET BOOST_MOVE_RET]. * Fixed bug [@https://svn.boost.org/trac/boost/ticket/9482 #9482: ['"MSVC macros not undefined in boost/move/detail/config_end.hpp"]]. + [@https://svn.boost.org/trac/boost/ticket/9045 #9045: ['"Wrong macro name on docs"]]. [endsect] diff --git a/include/boost/move/core.hpp b/include/boost/move/core.hpp index 3e2a7ba..0efa2af 100644 --- a/include/boost/move/core.hpp +++ b/include/boost/move/core.hpp @@ -312,8 +312,8 @@ //!This macro is used to achieve portable syntax in move //!constructors and assignments for template classes marked as //!BOOST_COPYABLE_AND_MOVABLE or BOOST_MOVABLE_BUT_NOT_COPYABLE. - //!As macros have problems with comma-separatd template arguments, - //!the template argument must be preceded with BOOST_RV_REF_START + //!As macros have problems with comma-separated template arguments, + //!the template argument must be preceded with BOOST_RV_REF_BEG //!and ended with BOOST_RV_REF_END #define BOOST_RV_REF_BEG\ \ @@ -322,8 +322,8 @@ //!This macro is used to achieve portable syntax in move //!constructors and assignments for template classes marked as //!BOOST_COPYABLE_AND_MOVABLE or BOOST_MOVABLE_BUT_NOT_COPYABLE. - //!As macros have problems with comma-separatd template arguments, - //!the template argument must be preceded with BOOST_RV_REF_START + //!As macros have problems with comma-separated template arguments, + //!the template argument must be preceded with BOOST_RV_REF_BEG //!and ended with BOOST_RV_REF_END #define BOOST_RV_REF_END\ && \