aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
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'])
```