diff options
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']) ``` |