Skip to content

Commit 926b87d

Browse files
author
Nathan Fallet
authored
Merge pull request #1182 from rex4539/typos
2 parents 9624b93 + b7c6fd6 commit 926b87d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Documentation/Index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ do {
691691
}
692692
```
693693

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

697697
```swift

SQLite.playground/Contents.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ do {
6565
// Handle error
6666
}
6767

68-
/// define a virtual tabe for the FTS index
68+
/// define a virtual table for the FTS index
6969
let emails = VirtualTable("emails")
7070

7171
let subject = Expression<String>("subject")

Sources/SQLite/Extensions/Cipher.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ extension Connection {
9393
// per recommendation of SQLCipher authors
9494
let migrateResult = try scalar("PRAGMA cipher_migrate;")
9595
if (migrateResult as? String) != "0" {
96-
// "0" is the result of successfull migration
96+
// "0" is the result of successful migration
9797
throw Result.error(message: "Error in cipher migration, result \(migrateResult.debugDescription)", code: 1, statement: nil)
9898
}
9999
}

0 commit comments

Comments
 (0)