Skip to content

Commit 0e97663

Browse files
authored
Merge pull request groue#1246 from sameer4/patch-1
Update AssociationsBasics.md
2 parents f3cc4ad + aacaa43 commit 0e97663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Documentation/AssociationsBasics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1510,7 +1510,7 @@ let sortedAuthor = Book.author.order(Column("name"))
15101510
let request = Book.including(required: sortedAuthor)
15111511
```
15121512

1513-
When you sort both the base record on the associated record, the request is sorted on the base record first, and on the associated record next:
1513+
When you sort both the base record and the associated record, the request is sorted on the base record first, and on the associated record next:
15141514

15151515
```swift
15161516
// SELECT book.*, person.*

0 commit comments

Comments
 (0)