diff options
author | Sergio <shernade@gmail.com> | 2013-09-05 12:04:37 +0200 |
---|---|---|
committer | Sergio <shernade@gmail.com> | 2013-09-05 12:04:37 +0200 |
commit | a78a4652c2f5ec76d3a9ed91f80789716b99a37c (patch) | |
tree | b5e87e5e9b27089c189536f8711907fb2cf4cd40 /guides/source | |
parent | 0d2d10d8c4f5dd906e40a91fbf9781d915727acf (diff) | |
download | rails-a78a4652c2f5ec76d3a9ed91f80789716b99a37c.tar.gz rails-a78a4652c2f5ec76d3a9ed91f80789716b99a37c.tar.bz2 rails-a78a4652c2f5ec76d3a9ed91f80789716b99a37c.zip |
added # or comment
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_querying.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index cb5fe52506..2df6b0ba6a 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -1518,7 +1518,7 @@ one of those records exists. ```ruby Client.exists?(id: [1,2,3]) -or +# or Client.exists?(name: ['John', 'Sergei']) ``` |