diff --git a/glm/core/func_vector_relational.hpp b/glm/core/func_vector_relational.hpp index df80aba0..a283f2b2 100644 --- a/glm/core/func_vector_relational.hpp +++ b/glm/core/func_vector_relational.hpp @@ -50,8 +50,8 @@ namespace glm //! Returns the component-wise comparison result of x < y. //! - //! \li GLSL lessThan man page - //! \li GLSL 1.30.08 specification, section 8.6 + /// @see - GLSL lessThan man page + /// @see - GLSL 4.20.8 specification, section 8.7 template class vecType> GLM_FUNC_QUALIFIER typename vecType::bool_type lessThan ( @@ -73,8 +73,8 @@ namespace glm //! Returns the component-wise comparison of result x <= y. //! - //! \li GLSL lessThanEqual man page - //! \li GLSL 1.30.08 specification, section 8.6 + /// @see - GLSL lessThanEqual man page + /// @see - GLSL 4.20.8 specification, section 8.7 template class vecType> GLM_FUNC_QUALIFIER typename vecType::bool_type lessThanEqual ( @@ -95,8 +95,8 @@ namespace glm //! Returns the component-wise comparison of result x > y. //! - //! \li GLSL greaterThan man page - //! \li GLSL 1.30.08 specification, section 8.6 + /// @see - GLSL greaterThan man page + /// @see - GLSL 4.20.8 specification, section 8.7 template class vecType> GLM_FUNC_QUALIFIER typename vecType::bool_type greaterThan ( @@ -117,8 +117,8 @@ namespace glm //! Returns the component-wise comparison of result x >= y. //! - //! \li GLSL greaterThanEqual man page - //! \li GLSL 1.30.08 specification, section 8.6 + /// @see - GLSL greaterThanEqual man page + /// @see - GLSL 4.20.8 specification, section 8.7 template class vecType> GLM_FUNC_QUALIFIER typename vecType::bool_type greaterThanEqual ( @@ -139,8 +139,8 @@ namespace glm //! Returns the component-wise comparison of result x == y. //! - //! \li GLSL equal man page - //! \li GLSL 1.30.08 specification, section 8.6 + /// @see - GLSL equal man page + /// @see - GLSL 4.20.8 specification, section 8.7 template class vecType> GLM_FUNC_QUALIFIER typename vecType::bool_type equal ( @@ -159,8 +159,8 @@ namespace glm //! Returns the component-wise comparison of result x != y. //! - //! \li GLSL notEqual man page - //! \li GLSL 1.30.08 specification, section 8.6 + /// @see - GLSL notEqual man page + /// @see - GLSL 4.20.8 specification, section 8.7 template class vecType> GLM_FUNC_QUALIFIER typename vecType::bool_type notEqual ( @@ -179,8 +179,8 @@ namespace glm //! Returns true if any component of x is true. //! - //! \li GLSL any man page - //! \li GLSL 1.30.08 specification, section 8.6 + /// @see - GLSL any man page + /// @see - GLSL 4.20.8 specification, section 8.7 template