diff --git a/include/boost/move/utility_core.hpp b/include/boost/move/utility_core.hpp
index 1786b1e..3e04172 100644
--- a/include/boost/move/utility_core.hpp
+++ b/include/boost/move/utility_core.hpp
@@ -164,8 +164,9 @@
#if defined(BOOST_MOVE_DOXYGEN_INVOKED)
//! This function provides a way to convert a reference into a rvalue reference
- //! in compilers with rvalue references. For other compilers converts T & into
- //! ::boost::rv & so that move emulation is activated.
+ //! in compilers with rvalue references. For other compilers if `T` is Boost.Move
+ //! enabled type then it converts `T&` into ::boost::rv & so that
+ //! move emulation is activated, else it returns `T &`.
template
rvalue_reference move(input_reference) noexcept;