File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ public final class Connection {
38
38
/// The location of a SQLite database.
39
39
public enum Location {
40
40
41
- /// An in-memory database (equivalent to `.URI (":memory:")`).
41
+ /// An in-memory database (equivalent to `.uri (":memory:")`).
42
42
///
43
43
/// See: <https://www.sqlite.org/inmemorydb.html#sharedmemdb>
44
44
case inMemory
45
45
46
- /// A temporary, file-backed database (equivalent to `.URI ("")`).
46
+ /// A temporary, file-backed database (equivalent to `.uri ("")`).
47
47
///
48
48
/// See: <https://www.sqlite.org/inmemorydb.html#temp_db>
49
49
case temporary
@@ -93,7 +93,7 @@ public final class Connection {
93
93
/// - location: The location of the database. Creates a new database if it
94
94
/// doesn’t already exist (unless in read-only mode).
95
95
///
96
- /// Default: `.InMemory `.
96
+ /// Default: `.inMemory `.
97
97
///
98
98
/// - readonly: Whether or not to open the database in a read-only state.
99
99
///
@@ -321,7 +321,7 @@ public final class Connection {
321
321
///
322
322
/// - mode: The mode in which a transaction acquires a lock.
323
323
///
324
- /// Default: `.Deferred `
324
+ /// Default: `.deferred `
325
325
///
326
326
/// - block: A closure to run SQL statements within the transaction.
327
327
/// The transaction will be committed when the block returns. The block
You can’t perform that action at this time.
0 commit comments