diff options
author | Abraham Chan <abraham@rangeme.com> | 2017-06-22 14:10:17 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-22 14:10:17 +1000 |
commit | 3b308f3321bada45eaad78ee14219dd5d98106fb (patch) | |
tree | 85fb972e0bd41f05094275a1db0c881ea6490115 /guides/source | |
parent | b1bde1f2a4a588480ca7f0349eb74e8893638eb3 (diff) | |
download | rails-3b308f3321bada45eaad78ee14219dd5d98106fb.tar.gz rails-3b308f3321bada45eaad78ee14219dd5d98106fb.tar.bz2 rails-3b308f3321bada45eaad78ee14219dd5d98106fb.zip |
Fix hash conditions documentation [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_querying.md | 2 |
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 |