From 6cae738ab81771e17aeb686aad531210d336af85 Mon Sep 17 00:00:00 2001 From: Jaaaky <43599380+Jaaaky@users.noreply.github.com> Date: Thu, 16 Dec 2021 20:41:23 +0300 Subject: [PATCH] StorageManager: fix write_block() comment --- libraries/StorageManager/StorageManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/StorageManager/StorageManager.cpp b/libraries/StorageManager/StorageManager.cpp index 96dcdbe95f..2b85cc4817 100644 --- a/libraries/StorageManager/StorageManager.cpp +++ b/libraries/StorageManager/StorageManager.cpp @@ -164,7 +164,7 @@ bool StorageAccess::read_block(void *data, uint16_t addr, size_t n) const /* - base read function. The addr offset is within the bytes allocated + base write function. The addr offset is within the bytes allocated for the storage type of this StorageAccess object */ bool StorageAccess::write_block(uint16_t addr, const void *data, size_t n) const