Correct typo

This commit is contained in:
2024-06-12 16:11:38 +02:00
parent 3c1eea33d9
commit c7e96184e6

View File

@@ -62,7 +62,7 @@
/* Macro for calculating size of an array */
#define ARRAY_SIZE(Array) (sizeof(Array) / sizeof(*Array))
/* Macro for concatenating two strings */
/* Macros for concatenating two strings */
#define CONCAT_STRING(Str1, Str2) Str1##Str2
#define CONCATENATE(Str1, Str2) CONCAT_STRING(Str1, Str2)