mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #18560 from ogennadi/patch-2
Fixed extraneous quoting
This commit is contained in:
commit
9be89ab215
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue