From 27d14ba72a76454871d53af2c504b16c6ba3d0a4 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 11:48:03 -0500 Subject: [PATCH] spelling: check Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- tests/fw/util/test_ihex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fw/util/test_ihex.c b/tests/fw/util/test_ihex.c index 755f17a8..0a8015f3 100644 --- a/tests/fw/util/test_ihex.c +++ b/tests/fw/util/test_ihex.c @@ -32,7 +32,7 @@ void test_ihex__initialize(void) { static void prv_assert_ihex(const char *expected) { int len = strlen(expected); - // Cehck that bytes aren't touched past the end of the record. + // Check that bytes aren't touched past the end of the record. for (int i=len; i < sizeof(s_result); ++i) { cl_assert_equal_i(0x20, s_result[i]); }