From 804d4446d101555ff6d1ab8b4c76eb76d01475f4 Mon Sep 17 00:00:00 2001 From: Mykhailo Kuznietsov Date: Wed, 11 Oct 2023 18:41:52 +1100 Subject: [PATCH] AP_Filesystem: Fix some typos Fixed some typos found in the code. --- libraries/AP_Filesystem/AP_Filesystem_FATFS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Filesystem/AP_Filesystem_FATFS.cpp b/libraries/AP_Filesystem/AP_Filesystem_FATFS.cpp index f728b3362c..59cbd35762 100644 --- a/libraries/AP_Filesystem/AP_Filesystem_FATFS.cpp +++ b/libraries/AP_Filesystem/AP_Filesystem_FATFS.cpp @@ -879,7 +879,7 @@ bool AP_Filesystem_FATFS::format(void) #if FF_USE_MKFS WITH_SEMAPHORE(sem); hal.scheduler->register_io_process(FUNCTOR_BIND_MEMBER(&AP_Filesystem_FATFS::format_handler, void)); - // the format is handled asyncronously, we inform user of success + // the format is handled asynchronously, we inform user of success // via a text message. format_status can be polled for progress format_status = FormatStatus::PENDING; return true;