Skip to content

Commit 7017bf5

Browse files
committed
And, not or
Signed-off-by: Stephen Celis <[email protected]>
1 parent 1cd7b92 commit 7017bf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SQLite/Database.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ public final class Database {
5959
return rowid == 0 ? nil : rowid
6060
}
6161

62-
/// The last number of changes (inserts, updates, or deletes) made to the
62+
/// The last number of changes (inserts, updates, and deletes) made to the
6363
/// database via this connection.
6464
public var changes: Int {
6565
return Int(sqlite3_changes(handle))
6666
}
6767

68-
/// The total number of changes (inserts, updates, or deletes) made to the
68+
/// The total number of changes (inserts, updates, and deletes) made to the
6969
/// database via this connection.
7070
public var totalChanges: Int { return Int(sqlite3_total_changes(handle)) }
7171

0 commit comments

Comments
 (0)