aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2015-01-17 07:38:35 +0000
committerAbdelkader Boudih <terminale@gmail.com>2015-01-17 07:38:35 +0000
commit9be89ab2157556aafcd86dc68eb135e3da698964 (patch)
treeeef14229d3e86b80d3995875c1e2b18f248e168a
parent059a83278aed164919cc9f5e6fa658f111e124ea (diff)
parent3686513de755762842f0dad949164dea80ad6b36 (diff)
downloadrails-9be89ab2157556aafcd86dc68eb135e3da698964.tar.gz
rails-9be89ab2157556aafcd86dc68eb135e3da698964.tar.bz2
rails-9be89ab2157556aafcd86dc68eb135e3da698964.zip
Merge pull request #18560 from ogennadi/patch-2
Fixed extraneous quoting
-rw-r--r--guides/source/active_record_querying.md2
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