Skip to content

Commit

Permalink
Merge pull request #442 from Rld281/patch-1
Browse files Browse the repository at this point in the history
DOC fix minor typo on class name in code sample
  • Loading branch information
GuySartorelli authored Jan 18, 2024
2 parents 8157484 + 8ec4dfd commit 1b19d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ $lastPlayer = $players->last();

// returns a single `Player` record that has the ID of 2.
$player = Player::get()->byID(2);
$player = Playet::get_by_id(2);
$player = Player::get_by_id(2);
```

[hint]
Expand Down

0 comments on commit 1b19d5c

Please sign in to comment.