From ad009d4e49b850c8cad2b3fb191c5a7b0fca9f2d Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Tue, 27 Aug 2024 12:29:43 +0300 Subject: [PATCH] doc: improve briefs --- include/cglm/struct/vec2-ext.h | 4 ++-- include/cglm/struct/vec3-ext.h | 4 ++-- include/cglm/vec2-ext.h | 4 ++-- include/cglm/vec3-ext.h | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/cglm/struct/vec2-ext.h b/include/cglm/struct/vec2-ext.h index f467aeb4..7d773866 100644 --- a/include/cglm/struct/vec2-ext.h +++ b/include/cglm/struct/vec2-ext.h @@ -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 diff --git a/include/cglm/struct/vec3-ext.h b/include/cglm/struct/vec3-ext.h index 31fb6c2d..1a3e88a5 100644 --- a/include/cglm/struct/vec3-ext.h +++ b/include/cglm/struct/vec3-ext.h @@ -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 diff --git a/include/cglm/vec2-ext.h b/include/cglm/vec2-ext.h index 1015a391..4e4d899c 100644 --- a/include/cglm/vec2-ext.h +++ b/include/cglm/vec2-ext.h @@ -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 diff --git a/include/cglm/vec3-ext.h b/include/cglm/vec3-ext.h index bea55830..d2e113a2 100644 --- a/include/cglm/vec3-ext.h +++ b/include/cglm/vec3-ext.h @@ -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