We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cd7b92 commit 7017bf5Copy full SHA for 7017bf5
SQLite/Database.swift
@@ -59,13 +59,13 @@ public final class Database {
59
return rowid == 0 ? nil : rowid
60
}
61
62
- /// The last number of changes (inserts, updates, or deletes) made to the
+ /// The last number of changes (inserts, updates, and deletes) made to the
63
/// database via this connection.
64
public var changes: Int {
65
return Int(sqlite3_changes(handle))
66
67
68
- /// The total number of changes (inserts, updates, or deletes) made to the
+ /// The total number of changes (inserts, updates, and deletes) made to the
69
70
public var totalChanges: Int { return Int(sqlite3_total_changes(handle)) }
71
0 commit comments