Skip to content

Commit b8a55fd

Browse files
authored
Merge pull request #7 from bradj/patch-1
Fixes readme typos
2 parents 9c37e32 + be9a578 commit b8a55fd

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
@@ -14,7 +14,7 @@ database file.
1414
*everdb* is:
1515
* Embedded (your application opens the database file directly)
1616
* Single-user (only one process can open the file at a time)
17-
* ACID complient (supports transactions and guarantees data reliability)
17+
* ACID compliant (supports transactions and guarantees data reliability)
1818
* Efficient (datastructures are fast, all operations do not need to load large
1919
structures into memory, optimized for 4K RAM/disk sizes, etc)
2020

@@ -40,7 +40,7 @@ TODO
4040
- [ ] Fixed-length struct array datatype
4141
- [ ] Transacions & ACID
4242

43-
Datastructures
43+
Data Structures
4444
==============
4545

4646
everdb supports three data structures: Blobs, Arrays, and Hashes.
@@ -49,7 +49,7 @@ everdb supports three data structures: Blobs, Arrays, and Hashes.
4949
Blobs
5050
-----
5151

52-
A Blob is a an arbitrary sized array of bytes, similar to the `bytrarray` Python
52+
A Blob is a an arbitrary sized array of bytes, similar to the `bytearray` Python
5353
type. The maximum size of a blob is slightly under 2GiB (2128609280B). Blobs
5454
can be accessed similar to a `bytearray` or `file` object. Indexing, slicing,
5555
and appending to a blob is space efficient and only loads the required data into

0 commit comments

Comments
 (0)