doc: improve briefs

This commit is contained in:
Recep Aslantas
2024-08-27 12:29:43 +03:00
parent 2f619cdd6f
commit ad009d4e49
4 changed files with 8 additions and 8 deletions

View File

@@ -133,7 +133,7 @@ glms_vec2_min(vec2s v) {
}
/*!
* @brief check if all items are NaN (not a number)
* @brief check if one of items is NaN (not a number)
* you should only use this in DEBUG mode or very critical asserts
*
* @param[in] v vector
@@ -145,7 +145,7 @@ glms_vec2_(isnan)(vec2s v) {
}
/*!
* @brief check if all items are INFINITY
* @brief check if one of items is INFINITY
* you should only use this in DEBUG mode or very critical asserts
*
* @param[in] v vector

View File

@@ -151,7 +151,7 @@ glms_vec3_(min)(vec3s v) {
}
/*!
* @brief check if all items are NaN (not a number)
* @brief check if one of items is NaN (not a number)
* you should only use this in DEBUG mode or very critical asserts
*
* @param[in] v vector
@@ -163,7 +163,7 @@ glms_vec3_(isnan)(vec3s v) {
}
/*!
* @brief check if all items are INFINITY
* @brief check if one of items is INFINITY
* you should only use this in DEBUG mode or very critical asserts
*
* @param[in] v vector

View File

@@ -128,7 +128,7 @@ glm_vec2_min(vec2 v) {
}
/*!
* @brief check if all items are NaN (not a number)
* @brief check if one of items is NaN (not a number)
* you should only use this in DEBUG mode or very critical asserts
*
* @param[in] v vector
@@ -140,7 +140,7 @@ glm_vec2_isnan(vec2 v) {
}
/*!
* @brief check if all items are INFINITY
* @brief check if one of items is INFINITY
* you should only use this in DEBUG mode or very critical asserts
*
* @param[in] v vector

View File

@@ -164,7 +164,7 @@ glm_vec3_min(vec3 v) {
}
/*!
* @brief check if all items are NaN (not a number)
* @brief check if one of items is NaN (not a number)
* you should only use this in DEBUG mode or very critical asserts
*
* @param[in] v vector
@@ -176,7 +176,7 @@ glm_vec3_isnan(vec3 v) {
}
/*!
* @brief check if all items are INFINITY
* @brief check if one of items is INFINITY
* you should only use this in DEBUG mode or very critical asserts
*
* @param[in] v vector