From 9bf2e4c8dcdce578e0c503542b1d261181439841 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:46:57 -0500 Subject: [PATCH] spelling: succeeds Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/services/normal/settings/settings_file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fw/services/normal/settings/settings_file.c b/src/fw/services/normal/settings/settings_file.c index 2143fecd..a566b14b 100644 --- a/src/fw/services/normal/settings/settings_file.c +++ b/src/fw/services/normal/settings/settings_file.c @@ -256,7 +256,7 @@ status_t settings_file_rewrite_filtered( settings_file_close(file); // We have to close and reopen the new_file so that it's temp flag is cleared. // Before the close succeeds, if we reboot, we will just end up reading the - // old file. After the close suceeds, we will end up reading the new + // old file. After the close succeeds, we will end up reading the new // (compacted) file. char *name = kernel_strdup(new_file.name); settings_file_close(&new_file); @@ -579,7 +579,7 @@ status_t settings_file_rewrite(SettingsFile *file, settings_file_close(file); // We have to close and reopen the new_file so that it's temp flag is cleared. // Before the close succeeds, if we reboot, we will just end up reading the - // old file. After the close suceeds, we will end up reading the new + // old file. After the close succeeds, we will end up reading the new // (compacted) file. char *name = kernel_strdup(new_file.name); settings_file_close(&new_file);