spelling: check

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 11:48:03 -05:00
parent 348660fb1e
commit 27d14ba72a

View file

@ -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]);
}