From 1f4ef63d0043321c62cfa54382da5d299a9d11ec Mon Sep 17 00:00:00 2001 From: serkan3k Date: Tue, 19 May 2020 22:19:11 +0300 Subject: [PATCH] Fixed typo in documentation A typo in acos function description is changed. --- glm/trigonometric.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/trigonometric.hpp b/glm/trigonometric.hpp index fcf07f89..51d49c13 100644 --- a/glm/trigonometric.hpp +++ b/glm/trigonometric.hpp @@ -96,7 +96,7 @@ namespace glm template GLM_FUNC_DECL vec asin(vec const& x); - /// Arc cosine. Returns an angle whose sine is x. + /// Arc cosine. Returns an angle whose cosine is x. /// The range of values returned by this function is [0, PI]. /// Results are undefined if |x| > 1. ///