Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Documentation/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ do {
}
```

Multiple rows can be inserted at once by similarily calling `insertMany` with an array of
Multiple rows can be inserted at once by similarly calling `insertMany` with an array of
per-row [setters](#setters).

```swift
Expand Down
2 changes: 1 addition & 1 deletion SQLite.playground/Contents.swift
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ do {
// Handle error
}

/// define a virtual tabe for the FTS index
/// define a virtual table for the FTS index
let emails = VirtualTable("emails")

let subject = Expression<String>("subject")
Expand Down
2 changes: 1 addition & 1 deletion Sources/SQLite/Extensions/Cipher.swift
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ extension Connection {
// per recommendation of SQLCipher authors
let migrateResult = try scalar("PRAGMA cipher_migrate;")
if (migrateResult as? String) != "0" {
// "0" is the result of successfull migration
// "0" is the result of successful migration
throw Result.error(message: "Error in cipher migration, result \(migrateResult.debugDescription)", code: 1, statement: nil)
}
}
Expand Down