Merge pull request #2639 from sefinek/fix/typos-in-comments

fix: fix typos in source code comments
This commit is contained in:
Liam Cottle
2026-06-27 11:26:54 +12:00
committed by GitHub
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -545,7 +545,7 @@ bool DataStore::putBlobByKey(const uint8_t key[], int key_len, const uint8_t src
uint32_t pos = 0, found_pos = 0;
uint32_t min_timestamp = 0xFFFFFFFF;
// search for matching key OR evict by oldest timestmap
// search for matching key OR evict by oldest timestamp
BlobRec tmp;
file.seek(0);
while (file.read((uint8_t *) &tmp, sizeof(tmp)) == sizeof(tmp)) {