diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-09-09 17:25:09 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-09-09 17:25:44 +0530 |
commit | 2db79dc9ea0b623c6d76b72e85f58efd63b50e08 (patch) | |
tree | 2db0a614b9f03c7c95ec0495f20ac0e5e506d981 /guides/source/active_record_querying.textile | |
parent | decf4a164d2b00f0be3fc8331df0f0cbe16e7e94 (diff) | |
download | rails-2db79dc9ea0b623c6d76b72e85f58efd63b50e08.tar.gz rails-2db79dc9ea0b623c6d76b72e85f58efd63b50e08.tar.bz2 rails-2db79dc9ea0b623c6d76b72e85f58efd63b50e08.zip |
minor fixes and edits [ci skip]
Diffstat (limited to 'guides/source/active_record_querying.textile')
-rw-r--r-- | guides/source/active_record_querying.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.textile b/guides/source/active_record_querying.textile index a02ef21b00..96ae5b2972 100644 --- a/guides/source/active_record_querying.textile +++ b/guides/source/active_record_querying.textile @@ -1183,7 +1183,7 @@ Client.unscoped.all This method removes all scoping and will do a normal query on the table. -Note that chaining +unscoped+ with a +scope+ does not work. In this cases, it is +Note that chaining +unscoped+ with a +scope+ does not work. In these cases, it is recommended that you use the block form of +unscoped+: <ruby> |