From b60d61e5e10ce131870d294de67f404c44edc3cd Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 12:18:54 -0500 Subject: [PATCH] spelling: accommodate Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/ui/menu_layer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/applib/ui/menu_layer.c b/src/fw/applib/ui/menu_layer.c index de5b8ebc..9e44fe9a 100644 --- a/src/fw/applib/ui/menu_layer.c +++ b/src/fw/applib/ui/menu_layer.c @@ -471,7 +471,7 @@ static void prv_menu_layer_walk_upward_from_iterator(MenuIterator *it) { const int16_t total_height = it->cursor.h + it->cursor.sep; if (total_height > it->cursor.y) { // If the total height is greater than the cursor y, don't - // add in space to accodomate the separator as the downwards callback + // add in space to accommodate the separator as the downwards callback // will add it for us. it->cursor.y -= it->cursor.h; } else {