aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAbraham Chan <abraham@rangeme.com>2017-06-22 14:10:17 +1000
committerGitHub <noreply@github.com>2017-06-22 14:10:17 +1000
commit3b308f3321bada45eaad78ee14219dd5d98106fb (patch)
tree85fb972e0bd41f05094275a1db0c881ea6490115 /guides
parentb1bde1f2a4a588480ca7f0349eb74e8893638eb3 (diff)
downloadrails-3b308f3321bada45eaad78ee14219dd5d98106fb.tar.gz
rails-3b308f3321bada45eaad78ee14219dd5d98106fb.tar.bz2
rails-3b308f3321bada45eaad78ee14219dd5d98106fb.zip
Fix hash conditions documentation [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_record_querying.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md
index 3676462788..215142223d 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -513,8 +513,6 @@ Article.where(author: author)
Author.joins(:articles).where(articles: { author: author })
```
-NOTE: The values cannot be symbols. For example, you cannot do `Client.where(status: :active)`.
-
#### Range Conditions
```ruby