From 914f36cf053d1af98a1f4ff339617b73b5de2bea Mon Sep 17 00:00:00 2001 From: Athan Date: Sun, 3 Mar 2024 22:52:01 -0800 Subject: [PATCH] Apply suggestions from code review Signed-off-by: Athan --- lib/node_modules/@stdlib/constants/int32/max/README.md | 2 +- .../constants/int32/max/include/stdlib/constants/int32/max.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/int32/max/README.md b/lib/node_modules/@stdlib/constants/int32/max/README.md index a736eb9bdbb..a2a96d70871 100644 --- a/lib/node_modules/@stdlib/constants/int32/max/README.md +++ b/lib/node_modules/@stdlib/constants/int32/max/README.md @@ -90,7 +90,7 @@ console.log( INT32_MAX ); #### STDLIB_CONSTANT_INT32_MAX -Macro for maximum [signed 32-bit integer][max-int32]. +Macro for the maximum [signed 32-bit integer][max-int32]. diff --git a/lib/node_modules/@stdlib/constants/int32/max/include/stdlib/constants/int32/max.h b/lib/node_modules/@stdlib/constants/int32/max/include/stdlib/constants/int32/max.h index a3816dd4a32..db0f6088721 100644 --- a/lib/node_modules/@stdlib/constants/int32/max/include/stdlib/constants/int32/max.h +++ b/lib/node_modules/@stdlib/constants/int32/max/include/stdlib/constants/int32/max.h @@ -20,8 +20,8 @@ #define STDLIB_CONSTANTS_INT32_MAX_H /** -* Macro for maximum signed 32-bit integer. +* Macro for the maximum signed 32-bit integer. */ -#define STDLIB_CONSTANT_INT32_MAX 2147483647|0 +#define STDLIB_CONSTANT_INT32_MAX 2147483647 #endif // !STDLIB_CONSTANTS_INT32_MAX_H