aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorSergio <shernade@gmail.com>2013-09-05 12:04:37 +0200
committerSergio <shernade@gmail.com>2013-09-05 12:04:37 +0200
commita78a4652c2f5ec76d3a9ed91f80789716b99a37c (patch)
treeb5e87e5e9b27089c189536f8711907fb2cf4cd40 /guides
parent0d2d10d8c4f5dd906e40a91fbf9781d915727acf (diff)
downloadrails-a78a4652c2f5ec76d3a9ed91f80789716b99a37c.tar.gz
rails-a78a4652c2f5ec76d3a9ed91f80789716b99a37c.tar.bz2
rails-a78a4652c2f5ec76d3a9ed91f80789716b99a37c.zip
added # or comment
Diffstat (limited to 'guides')
-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 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'])
```