From 348660fb1ee694e181ea9630438a4f8fcb4421e5 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:15:43 -0500 Subject: [PATCH] spelling: characters Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/include/logging/log_hashing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/logging/log_hashing.h b/src/include/logging/log_hashing.h index 99241863..f6ca4071 100644 --- a/src/include/logging/log_hashing.h +++ b/src/include/logging/log_hashing.h @@ -169,7 +169,7 @@ ALWAYS_INLINE static uint32_t LOG_SECTION_OFFSET(const uint8_t level, const char } // Search for an 's' character succeeding the % characters in fmt. s1-s7 point to the first 's' - // charactres in fmt after the previously found % characters (or NULL if there aren't 7 's' + // characters in fmt after the previously found % characters (or NULL if there aren't 7 's' // characters in fmt). if (p1) s1 = __builtin_strchr(p1, 's'); if (p2) s2 = __builtin_strchr(p2, 's');