Skip to content

Commit

Permalink
Merge pull request #1182 from rex4539/typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanfallet committed Jan 8, 2023
2 parents 9624b93 + b7c6fd6 commit 926b87d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Documentation/Index.md
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
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
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

0 comments on commit 926b87d

Please sign in to comment.