Skip to content

Commit 7868fdf

Browse files
committed
Fix doc
1 parent 0af0e4d commit 7868fdf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Documentation/Index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,8 +1103,8 @@ users.limit(5, offset: 5)
11031103

11041104
#### Recursive and Hierarchical Queries
11051105

1106-
We can perform a recursive or hierarchical query using a [query's](#queries) `with`
1107-
function.
1106+
We can perform a recursive or hierarchical query using a [query's](#queries)
1107+
[`WITH`](https://sqlite.org/lang_with.html) function.
11081108

11091109
```swift
11101110
// Get the management chain for the manager with id == 8
@@ -2092,7 +2092,7 @@ databases to an existing connection:
20922092
```swift
20932093
let db = try Connection("db.sqlite")
20942094

2095-
try db.attach(.uri("external.sqlite", parameters: [.mode(.readOnly)], as: "external")
2095+
try db.attach(.uri("external.sqlite", parameters: [.mode(.readOnly)]), as: "external")
20962096
// ATTACH DATABASE 'file:external.sqlite?mode=ro' AS 'external'
20972097

20982098
let table = Table("table", database: "external")

0 commit comments

Comments
 (0)