1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixed extraneous quoting

This commit is contained in:
Oge Nnadi 2015-01-16 21:56:34 -08:00
parent 059a83278a
commit 3686513de7

View file

@ -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