aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_querying.md
diff options
context:
space:
mode:
authorMakoto Nihei <nihemak@gmail.com>2017-05-27 11:52:18 +0900
committerMakoto Nihei <nihemak@gmail.com>2017-05-27 11:52:18 +0900
commit9980709c5aa25af7c0fd598bade23c2a9e66efc5 (patch)
treeaa18278cd6bd38702912044d94dda4402c4202e6 /guides/source/active_record_querying.md
parentd93cd4357bacf32dab0f03a9a0abc4144fdcdf16 (diff)
downloadrails-9980709c5aa25af7c0fd598bade23c2a9e66efc5.tar.gz
rails-9980709c5aa25af7c0fd598bade23c2a9e66efc5.tar.bz2
rails-9980709c5aa25af7c0fd598bade23c2a9e66efc5.zip
[ci skip]fix wrong variable name in docs
Diffstat (limited to 'guides/source/active_record_querying.md')
-rw-r--r--guides/source/active_record_querying.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md
index d1cbe506b4..07950c6066 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -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">]
```