diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index 57e8e080f4bcb2c73d656e3ab60e56cf1e7d418e..cf0249a4003b5767ccb16454bfc2077e716fbc14 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -1301,7 +1301,7 @@ especially useful if a `default_scope` is specified in the model and should not applied for this particular query. ```ruby -Client.unscoped.all +Client.unscoped.load ``` This method removes all scoping and will do a normal query on the table.