Skip to content

Commit 6e2e1f4

Browse files
committed
Update documentation links
1 parent 0dd17a9 commit 6e2e1f4

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Documentation/DemoApps/GRDBAsyncDemo/GRDBAsyncDemo/AppDatabase.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ struct AppDatabase {
1717
/// Application can use a `DatabasePool`, while SwiftUI previews and tests
1818
/// can use a fast in-memory `DatabaseQueue`.
1919
///
20-
/// See <https://github.com/groue/GRDB.swift/blob/master/README.md#database-connections>
20+
/// See <https://swiftpackageindex.com/groue/grdb.swift/documentation/grdb/databaseconnections>
2121
private let dbWriter: any DatabaseWriter
2222

2323
/// The DatabaseMigrator that defines the database schema.

Documentation/DemoApps/GRDBAsyncDemo/GRDBAsyncDemo/Persistence.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ extension AppDatabase {
2424
try fileManager.createDirectory(at: folderURL, withIntermediateDirectories: true)
2525

2626
// Connect to a database on disk
27-
// See https://github.com/groue/GRDB.swift/blob/master/README.md#database-connections
27+
// See https://swiftpackageindex.com/groue/grdb.swift/documentation/grdb/databaseconnections
2828
let dbURL = folderURL.appendingPathComponent("db.sqlite")
2929
let dbPool = try DatabasePool(path: dbURL.path)
3030

@@ -58,7 +58,7 @@ extension AppDatabase {
5858
/// Creates an empty database for SwiftUI previews
5959
static func empty() -> AppDatabase {
6060
// Connect to an in-memory database
61-
// See https://github.com/groue/GRDB.swift/blob/master/README.md#database-connections
61+
// See https://swiftpackageindex.com/groue/grdb.swift/documentation/grdb/databaseconnections
6262
let dbQueue = try! DatabaseQueue()
6363
return try! AppDatabase(dbQueue)
6464
}

Documentation/DemoApps/GRDBCombineDemo/GRDBCombineDemo/AppDatabase.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ struct AppDatabase {
1818
/// Application can use a `DatabasePool`, while SwiftUI previews and tests
1919
/// can use a fast in-memory `DatabaseQueue`.
2020
///
21-
/// See <https://github.com/groue/GRDB.swift/blob/master/README.md#database-connections>
21+
/// See <https://swiftpackageindex.com/groue/grdb.swift/documentation/grdb/databaseconnections>
2222
private let dbWriter: any DatabaseWriter
2323

2424
/// The DatabaseMigrator that defines the database schema.

Documentation/DemoApps/GRDBCombineDemo/GRDBCombineDemo/Persistence.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ extension AppDatabase {
2424
try fileManager.createDirectory(at: folderURL, withIntermediateDirectories: true)
2525

2626
// Connect to a database on disk
27-
// See https://github.com/groue/GRDB.swift/blob/master/README.md#database-connections
27+
// See https://swiftpackageindex.com/groue/grdb.swift/documentation/grdb/databaseconnections
2828
let dbURL = folderURL.appendingPathComponent("db.sqlite")
2929
let dbPool = try DatabasePool(path: dbURL.path)
3030

@@ -58,7 +58,7 @@ extension AppDatabase {
5858
/// Creates an empty database for SwiftUI previews
5959
static func empty() -> AppDatabase {
6060
// Connect to an in-memory database
61-
// See https://github.com/groue/GRDB.swift/blob/master/README.md#database-connections
61+
// See https://swiftpackageindex.com/groue/grdb.swift/documentation/grdb/databaseconnections
6262
let dbQueue = try! DatabaseQueue()
6363
return try! AppDatabase(dbQueue)
6464
}

Documentation/DemoApps/GRDBDemoiOS/GRDBDemoiOS/AppDatabase.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ final class AppDatabase {
1616
/// Application can use a `DatabasePool`, and tests can use a fast
1717
/// in-memory `DatabaseQueue`.
1818
///
19-
/// See <https://github.com/groue/GRDB.swift/blob/master/README.md#database-connections>
19+
/// See <https://swiftpackageindex.com/groue/grdb.swift/documentation/grdb/databaseconnections>
2020
private let dbWriter: any DatabaseWriter
2121

2222
/// The DatabaseMigrator that defines the database schema.

Documentation/DemoApps/GRDBDemoiOS/GRDBDemoiOS/Persistence.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ extension AppDatabase {
1717
try fileManager.createDirectory(at: folderURL, withIntermediateDirectories: true)
1818

1919
// Connect to a database on disk
20-
// See https://github.com/groue/GRDB.swift/blob/master/README.md#database-connections
20+
// See https://swiftpackageindex.com/groue/grdb.swift/documentation/grdb/databaseconnections
2121
let dbURL = folderURL.appendingPathComponent("db.sqlite")
2222
let dbPool = try DatabasePool(path: dbURL.path)
2323

0 commit comments

Comments
 (0)