소스 검색

Fixed typo in documentation

A typo in acos function description is changed.
serkan3k 5 년 전
부모
커밋
1f4ef63d00
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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.
 	///