Skip to content

Commit 44c58da

Browse files
authored
Update GettingStarted.md (#4)
The select closure specifies $0.title so the query will decode Strings
1 parent 865c3a7 commit 44c58da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/StructuredQueriesCore/Documentation.docc/Articles/GettingStarted.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ limits, offsets, and more. For example, we can chain onto the above query using
230230
$0.priority.desc(),
231231
$0.title)
232232
}
233-
// => [Reminder]
233+
// => [String]
234234
```
235235
}
236236
@Column {
@@ -273,7 +273,7 @@ method:
273273
$0.title)
274274
}
275275
.limit(10, offset: 10)
276-
// => [Reminder]
276+
// => [String]
277277
```
278278
}
279279
@Column {

0 commit comments

Comments
 (0)