From 937ef150b747cdbc0a3642cb4596d4e6e0942d81 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Fri, 17 Jun 2011 23:50:37 +0100 Subject: [PATCH] Updated doxygen doc --- glm/core/func_exponential.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/glm/core/func_exponential.hpp b/glm/core/func_exponential.hpp index b771db86..222c0285 100644 --- a/glm/core/func_exponential.hpp +++ b/glm/core/func_exponential.hpp @@ -25,7 +25,7 @@ /// @date 2008-08-08 / 2011-06-14 /// @author Christophe Riccio /// -/// @see - GLSL 4.10.6 specification, section 8.2 +/// @see - GLSL 4.10.6 specification, section 8.2 /// /// @defgroup core_func_exponential Exponential functions /// @ingroup core @@ -45,7 +45,7 @@ namespace glm /// /// @see /// @see - GLSL pow man page - /// @see - GLSL 4.10.6 specification, section 8.2 + /// @see - GLSL 4.10.6 specification, section 8.2 template genType pow(genType const & x, genType const & y); @@ -53,7 +53,7 @@ namespace glm /// /// @see /// @see - GLSL exp man page - /// @see - GLSL 4.10.6 specification, section 8.2 + /// @see - GLSL 4.10.6 specification, section 8.2 template genType exp(genType const & x); @@ -63,7 +63,7 @@ namespace glm /// /// @see /// @see - GLSL log man page - /// @see - GLSL 4.10.6 specification, section 8.2 + /// @see - GLSL 4.10.6 specification, section 8.2 template genType log(genType const & x); @@ -71,7 +71,7 @@ namespace glm /// /// @see /// @see - GLSL exp2 man page - /// @see - GLSL 4.10.6 specification, section 8.2 + /// @see - GLSL 4.10.6 specification, section 8.2 template genType exp2(genType const & x); @@ -80,7 +80,7 @@ namespace glm /// /// @see /// @see - GLSL log2 man page - /// @see - GLSL 4.10.6 specification, section 8.2 + /// @see - GLSL 4.10.6 specification, section 8.2 template genType log2(genType const & x); @@ -88,7 +88,7 @@ namespace glm /// /// @see /// @see - GLSL sqrt man page - /// @see - GLSL 4.10.6 specification, section 8.2 + /// @see - GLSL 4.10.6 specification, section 8.2 template genType sqrt(genType const & x); @@ -96,7 +96,7 @@ namespace glm /// /// @see /// @see - GLSL inversesqrt man page - /// @see - GLSL 4.10.6 specification, section 8.2 + /// @see - GLSL 4.10.6 specification, section 8.2 template genType inversesqrt(genType const & x);