aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-06-22 15:35:12 +0900
committerGitHub <noreply@github.com>2017-06-22 15:35:12 +0900
commit5de611afe63f9a30360d49db90e864d1d29dc283 (patch)
tree80e0e286b2c8f396984723ee0a087b265aceb8d2
parentf06cb6c335263a1aac6f801954b51f7ef0372729 (diff)
parent3b308f3321bada45eaad78ee14219dd5d98106fb (diff)
downloadrails-5de611afe63f9a30360d49db90e864d1d29dc283.tar.gz
rails-5de611afe63f9a30360d49db90e864d1d29dc283.tar.bz2
rails-5de611afe63f9a30360d49db90e864d1d29dc283.zip
Merge pull request #29529 from abraham-chan/fix-hash-conditions-documentation
Fix hash conditions documentation
-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