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

@@ -418,7 +418,7 @@ glm_vec4_subs(vec4 v, float s, vec4 dest) {
}
/*!
* @brief multiply two vector (component-wise multiplication)
* @brief multiply two vectors (component-wise multiplication)
*
* @param a vector1
* @param b vector2
@@ -634,7 +634,7 @@ glm_vec4_muladds(vec4 a, float s, vec4 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
*
@@ -666,7 +666,7 @@ glm_vec4_maxadd(vec4 a, vec4 b, vec4 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
*