Merge pull request #9927 from manuth/patch-1

Fix typos in 01_Data_Model_and_ORM.md
This commit is contained in:
Guy Marriott 2021-05-13 13:52:17 -07:00 committed by GitHub
commit 5031d2ae23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -266,7 +266,7 @@ $last = $players->last();
## Sorting
If would like to sort the list by `FirstName` in a ascending way (from A to Z).
If you would like to sort the list by `FirstName` in an ascending way (from A to Z).
```php
// Sort can either be Ascending (ASC) or Descending (DESC)
@ -663,7 +663,7 @@ $members = Member::get()
```
[alert]
Passing a *$join* statement to will filter results further by the JOINs performed against the foreign table. It will
Passing a *$join* statement will filter results further by the JOINs performed against the foreign table. It will
**not** return the additionally joined data.
[/alert]