From debfe4f529adbc6bba69f93c7a2591cb4318887b Mon Sep 17 00:00:00 2001 From: Mattia Pennasilico Date: Mon, 9 Oct 2023 15:27:18 +0200 Subject: [PATCH] Fix typo in comments --- src/utility/ota/FlashSHA256.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utility/ota/FlashSHA256.cpp b/src/utility/ota/FlashSHA256.cpp index cac4db619..85a1b4ebe 100644 --- a/src/utility/ota/FlashSHA256.cpp +++ b/src/utility/ota/FlashSHA256.cpp @@ -81,7 +81,7 @@ String FlashSHA256::calc(uint32_t const start_addr, uint32_t const max_flash_siz } /* We've read a normal segment with the next segment not containing - * any erased elements, just update the SHA256 hash calcultion. + * any erased elements, just update the SHA256 hash calculation. */ sha256.update(chunk, FLASH_READ_CHUNK_SIZE); bytes_read += FLASH_READ_CHUNK_SIZE;