Fixed typo: varlen -> keylen (#15)

This commit is contained in:
Yifan Zhao
2023-02-27 11:14:47 +08:00
committed by GitHub
parent f35ed210c1
commit a72c52e29f

View File

@@ -30,7 +30,7 @@ When user adds a key-value pair to a block (which is an entry), we will need to
```
| entry1 |
| key_len (2B) | key (varlen) | value_len (2B) | value (varlen) | ... |
| key_len (2B) | key (keylen) | value_len (2B) | value (varlen) | ... |
```
Key length and value length are 2B, which means their maximum length is 65536.