diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2015-01-17 07:38:35 +0000 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2015-01-17 07:38:35 +0000 |
commit | 9be89ab2157556aafcd86dc68eb135e3da698964 (patch) | |
tree | eef14229d3e86b80d3995875c1e2b18f248e168a /guides/source | |
parent | 059a83278aed164919cc9f5e6fa658f111e124ea (diff) | |
parent | 3686513de755762842f0dad949164dea80ad6b36 (diff) | |
download | rails-9be89ab2157556aafcd86dc68eb135e3da698964.tar.gz rails-9be89ab2157556aafcd86dc68eb135e3da698964.tar.bz2 rails-9be89ab2157556aafcd86dc68eb135e3da698964.zip |
Merge pull request #18560 from ogennadi/patch-2
Fixed extraneous quoting
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 0019ac9297..373a98bb85 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -1275,7 +1275,7 @@ User.active.where(state: 'finished') # SELECT "users".* FROM "users" WHERE "users"."state" = 'active' AND "users"."state" = 'finished' ``` -If we do want the `last where clause` to win then `Relation#merge` can +If we do want the last `where` clause to win then `Relation#merge` can be used. ```ruby |