Fix some formatting and grammar in README.md

This commit is contained in:
Jeremy Lin 2021-10-04 13:41:03 -07:00
parent 0663d85002
commit a422e6d256

View File

@ -32,9 +32,9 @@ The SQLCipher team welcomes contributions to the core library. All contributions
## Compiling
Building SQLCipher is similar to compiling a regular version of SQLite from source a couple small exceptions:
Building SQLCipher is similar to compiling a regular version of SQLite from source, with a couple of small exceptions:
1. You *must* define `SQLITE_HAS_CODEC` and either `SQLITE_TEMP_STORE=2` or SQLITE_TEMP_STORE=3`
1. You *must* define `SQLITE_HAS_CODEC` and either `SQLITE_TEMP_STORE=2` or `SQLITE_TEMP_STORE=3`
2. You will need to link against a support cryptographic provider (OpenSSL, LibTomCrypt, CommonCrypto/Security.framework, or NSS)
The following examples demonstrate linking against OpenSSL, which is a readily available provider on most Unix-like systems.