Skip to content

Commit 6270de6

Browse files
authored
Merge pull request #10393 from sebastiantoscano/patch-1
approcah -> approach
2 parents 09f9409 + e5e8665 commit 6270de6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/design-documents/features/storage/TDBStore/TDBStore_design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ TDBStore includes the following design basics:
5555

5656
All writes occur sequentially on the physical storage as records, superseding the previous ones for the same key. Each data record is written right after the last written one. If a key is updated, a new record with this key is written, overriding the previous value of this key. If a key is deleted, a new record with a "deleted" flag is added.
5757

58-
Writes expect the storage to be erased. However, TDBStore takes the "erase as you go" approcah, meaning that when it crosses a sector boundary, it checks whether the next sector is erased. If not, it erases the next sector. This saves time during initialization and garbage collection.
58+
Writes expect the storage to be erased. However, TDBStore takes the "erase as you go" approach, meaning that when it crosses a sector boundary, it checks whether the next sector is erased. If not, it erases the next sector. This saves time during initialization and garbage collection.
5959

6060
### Memory layout and areas
6161

0 commit comments

Comments
 (0)