summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/helper/types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/types.h b/src/helper/types.h
index 96a923b8..03ab5f0c 100644
--- a/src/helper/types.h
+++ b/src/helper/types.h
@@ -85,8 +85,8 @@ typedef bool _Bool;
/**
* Rounds @c m up to the nearest multiple of @c n using division.
- * @params m The value to round up to @c n.
- * @params n Round @c m up to a multiple of this number.
+ * @param m The value to round up to @c n.
+ * @param n Round @c m up to a multiple of this number.
* @returns The rounded integer value.
*/
#define DIV_ROUND_UP(m, n) (((m) + (n) - 1) / (n))