Skip to content

Commit f1decd7

Browse files
authored
docs: update readme
1 parent cba3ba2 commit f1decd7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ This follows a simple structure and exposes a very common API surface: `set(k,v)
1212

1313
A `get(k)` operation will read from the running store via its `keydir`. The value
1414
**must** exist here in order for it to be returned[^1], as the `keydir` contains a
15-
mapping of all known values and their respective offsets in the active or commpacted
15+
mapping of all known values and their respective offsets in the active or compacted
1616
log files.
1717

18-
[^1]: When a call to `open` is done, the directory is scanned for any log files,
18+
[^1]: When a call to `open` is made, the directory is scanned for any log files,
1919
which means that in the event of a crash or restart the `keydir` is always rebuilt
2020
to its prior state.
2121

22-
If a key exists its containing log file is opened, the offset is seeked, and the
22+
If a key exists, its containing log file is opened, the offset is seeked to, and the
2323
entry deserialised for return.
2424

2525
In the event of a `None` value, this signifies either a tombstone value (from prior removal)

0 commit comments

Comments
 (0)