Skip to content

Commit

Permalink
[ci skip]fix wrong variable name in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nihemak committed May 27, 2017
1 parent d93cd43 commit 9980709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/active_record_querying.md
Expand Up @@ -118,7 +118,7 @@ You can also use this method to query for multiple objects. Call the `find` meth

```ruby
# Find the clients with primary keys 1 and 10.
client = Client.find([1, 10]) # Or even Client.find(1, 10)
clients = Client.find([1, 10]) # Or even Client.find(1, 10)
# => [#<Client id: 1, first_name: "Lifo">, #<Client id: 10, first_name: "Ryan">]
```

Expand Down

0 comments on commit 9980709

Please sign in to comment.