From b147aee30a9def8d7ab886e237ad190f98bfb243 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Wed, 9 Aug 2017 16:40:08 -0700 Subject: [PATCH] Fix typos committed to furrtek/havoc repo. Thanks, furrtek! --- firmware/application/file.hpp | 2 +- firmware/application/ui_menu.cpp | 2 +- firmware/baseband/stream_input.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/firmware/application/file.hpp b/firmware/application/file.hpp index 42cce7f54..27e152eb0 100644 --- a/firmware/application/file.hpp +++ b/firmware/application/file.hpp @@ -237,7 +237,7 @@ std::filesystem::path next_filename_stem_matching_pattern(std::filesystem::path static_assert(sizeof(FIL::err) == 1, "FatFs FIL::err size not expected."); /* Dangerous to expose these, as FatFs native error values are byte-sized. However, - * my filesystem_error implemetation is fine with it. */ + * my filesystem_error implementation is fine with it. */ #define FR_DISK_FULL (0x100) #define FR_EOF (0x101) #define FR_BAD_SEEK (0x102) diff --git a/firmware/application/ui_menu.cpp b/firmware/application/ui_menu.cpp index f7ce70313..37b665737 100644 --- a/firmware/application/ui_menu.cpp +++ b/firmware/application/ui_menu.cpp @@ -23,7 +23,7 @@ namespace ui { -/* MenuViewItem **********************************************************/ +/* MenuItemView **********************************************************/ void MenuItemView::select() { if( item.on_select ) { diff --git a/firmware/baseband/stream_input.cpp b/firmware/baseband/stream_input.cpp index f383be9c6..ead2d40de 100644 --- a/firmware/baseband/stream_input.cpp +++ b/firmware/baseband/stream_input.cpp @@ -57,7 +57,7 @@ size_t StreamInput::write(const void* const data, const size_t length) { if( active_buffer->is_full() ) { if( !fifo_buffers_full.in(active_buffer) ) { - // FIFO is fuil of buffers, there's no place for this one. + // FIFO is full of buffers, there's no place for this one. // Bail out of the loop, and try submitting the buffer in the // next pass. // This should never happen if the number of buffers is less