From ba2564eb32213347d9f9bc0efcf693feb25d3978 Mon Sep 17 00:00:00 2001 From: HarukiToreda <116696711+HarukiToreda@users.noreply.github.com> Date: Mon, 12 Jan 2026 11:23:32 -0500 Subject: [PATCH] fix spelling errors --- src/MessageStore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MessageStore.cpp b/src/MessageStore.cpp index fbcfe53a1..36305c864 100644 --- a/src/MessageStore.cpp +++ b/src/MessageStore.cpp @@ -134,7 +134,7 @@ static inline void markMessageStoreUnsaved() } } -// // Called periodically from the main loop in main.cpp +// Called periodically from the main loop in main.cpp static inline void autosaveTick(MessageStore *store) { if (!store) @@ -150,7 +150,7 @@ static inline void autosaveTick(MessageStore *store) if (!reachedMs(now, g_lastAutoSaveMs + autosaveIntervalMs())) return; - // Autosave interval reached, Only save if there are unsaved messages. + // Autosave interval reached, only save if there are unsaved messages. if (g_messageStoreHasUnsavedChanges) { LOG_INFO("Autosaving MessageStore to flash"); store->saveToFlash();