Skip to content

Commit 833e7b5

Browse files
committed
Update docs
1 parent b395ab5 commit 833e7b5

File tree

4 files changed

+13
-33
lines changed

4 files changed

+13
-33
lines changed

Documentation/Index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -232,16 +232,16 @@ SQLiteDB comes with a typed expression layer that directly maps
232232
[Swift types](https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/SwiftStandardLibraryReference/)
233233
to their [SQLite counterparts](https://www.sqlite.org/datatype3.html).
234234

235-
| Swift Type | SQLite Type |
236-
| --------------- | ----------- |
237-
| `Int64`* | `INTEGER` |
238-
| `Double` | `REAL` |
239-
| `String` | `TEXT` |
240-
| `nil` | `NULL` |
241-
| `SQLite.Blob`| `BLOB` |
242-
| `URL` | `TEXT` |
243-
| `UUID` | `TEXT` |
244-
| `Date` | `TEXT` |
235+
| Swift Type | SQLite Type |
236+
| ----------------- | ----------- |
237+
| `Int64`* | `INTEGER` |
238+
| `Double` | `REAL` |
239+
| `String` | `TEXT` |
240+
| `nil` | `NULL` |
241+
| `SQLiteDB.Blob`| `BLOB` |
242+
| `URL` | `TEXT` |
243+
| `UUID` | `TEXT` |
244+
| `Date` | `TEXT` |
245245

246246
> *While `Int64` is the basic, raw type (to preserve 64-bit integers on
247247
> 32-bit platforms), `Int` and `Bool` work transparently.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ and works out-of-the-box on macOS, iOS, Linux, Android, and Windows.
1010
- A pure-Swift interface
1111
- A type-safe, optional-aware SQL expression builder
1212
- A flexible, chainable, lazy-executing query layer
13-
- Uses a built-in, modern sqlite version
13+
- Embeds a modern and consistent sqlite (3.44.2) build with the library
1414
- Automatically-typed data access
1515
- A lightweight, uncomplicated query and parameter binding interface
1616
- Developer-friendly error handling and debugging
1717
- [Full-text search][] support
1818
- [Well-documented][See Documentation]
1919
- Extensively tested
20-
- [SQLCipher][] support
20+
- [SQLCipher][] support using the embedded [LibTomCrypt][] library
2121
- [Schema query/migration][]
2222
- Works on iOS, macOS, Android, Windows, and Linux
2323

2424
[SQLCipher]: https://www.zetetic.net/sqlcipher/
25+
[LibTomCrypt]: http://www.libtom.net/LibTomCrypt/
2526
[Full-text search]: Documentation/Index.md#full-text-search
2627
[Schema query/migration]: Documentation/Index.md#querying-the-schema
2728
[See Documentation]: Documentation/Index.md#sqliteswift-documentation
2829

29-
3030
## Usage
3131

3232
```swift

Tests/Carthage/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

Tests/Carthage/Makefile

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)