Browse Source

Merge pull request #1014 from serkan3k/patch-1

Fixed typo in documentation #1014
Christophe 5 years ago
parent
commit
1e0ad71ec7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/trigonometric.hpp

+ 1 - 1
glm/trigonometric.hpp

@@ -96,7 +96,7 @@ namespace glm
 	template<length_t L, typename T, qualifier Q>
 	GLM_FUNC_DECL vec<L, T, Q> asin(vec<L, T, Q> 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.
 	///