Tell default_scope are prepended [ci skip]

This commit is contained in:
Rafael Mendonça França 2014-02-18 11:45:00 -03:00
parent a8a7654f40
commit 56c8242185

@ -1261,7 +1261,7 @@ User.active.merge(User.inactive)
# => SELECT "users".* FROM "users" WHERE "users"."state" = 'inactive'
```
One important caveat is that `default_scope` will be merged in
One important caveat is that `default_scope` will be prepended in
`scope` and `where` conditions.
```ruby