From 65e51d803c42a70ef1d9191cec032228e0eac064 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Sat, 29 Mar 2025 23:38:32 +0000 Subject: [PATCH] Fix comments --- src/utils/utils.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/utils/utils.h b/src/utils/utils.h index 136a4c9d..cde8ada1 100644 --- a/src/utils/utils.h +++ b/src/utils/utils.h @@ -41,22 +41,22 @@ #define MIN(a,b) ({ typeof(a) _a = a; typeof(b) _b = b; _a < _b ? _a : _b; }) /** - * @brief Converts a value to kilobytes. + * @brief Converts a value to kibibytes. * - * This macro converts the given value `x` to kilobytes. + * This macro converts the given value `x` to kibibytes. * * @param x The value to convert. - * @return The value in kilobytes. + * @return The value in kibibytes. */ #define KiB(x) ((x) * 1024) /** - * @brief Converts a value to megabytes. + * @brief Converts a value to mebibytes. * - * This macro converts the given value `x` to megabytes. + * This macro converts the given value `x` to mebibytes. * * @param x The value to convert. - * @return The value in megabytes. + * @return The value in mebibytes. */ #define MiB(x) ((x) * 1024 * 1024)