Fix Singular / Plural in comments

This commit is contained in:
Wladislav ヴラド Artsimovich
2023-06-16 17:40:06 +09:00
parent 9cf4190c9b
commit 87ae96b847
11 changed files with 21 additions and 21 deletions

View File

@@ -320,7 +320,7 @@ glm_vec3_subs(vec3 v, float s, vec3 dest) {
}
/*!
* @brief multiply two vector (component-wise multiplication)
* @brief multiply two vectors (component-wise multiplication)
*
* @param a vector1
* @param b vector2
@@ -469,7 +469,7 @@ glm_vec3_muladds(vec3 a, float s, vec3 dest) {
}
/*!
* @brief add max of two vector to result/dest
* @brief add max of two vectors to result/dest
*
* it applies += operator so dest must be initialized
*
@@ -486,7 +486,7 @@ glm_vec3_maxadd(vec3 a, vec3 b, vec3 dest) {
}
/*!
* @brief add min of two vector to result/dest
* @brief add min of two vectors to result/dest
*
* it applies += operator so dest must be initialized
*