Skip to content

Commit

Permalink
Merge pull request yiisoft#8359 from hagatorn/patch-1
Browse files Browse the repository at this point in the history
typo (plural) [skip ci]
  • Loading branch information
samdark committed May 11, 2015
2 parents 8680dad + 88bf099 commit 5ee920b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/db-active-record.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ $customer = Customer::findOne([

// returns all inactive customers
// SELECT * FROM `customer` WHERE `status` = 0
$customer = Customer::findAll([
$customers = Customer::findAll([
'status' => Customer::STATUS_INACTIVE,
]);
```
Expand Down

0 comments on commit 5ee920b

Please sign in to comment.