aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorMax Katz <maxwelljkatz@gmail.com>2015-01-04 00:18:49 -0700
committerMax Katz <maxwelljkatz@gmail.com>2015-01-04 00:18:49 -0700
commit52a7873863644905e0e5ce48b8eadbdd6468dbce (patch)
treeaf3d0e2dbd4e8496931f2be49cfb27e27c7fb766 /guides/source
parent2d9b9fb5b5f6015e66d3ad5cb96bc1ba117fd626 (diff)
downloadrails-52a7873863644905e0e5ce48b8eadbdd6468dbce.tar.gz
rails-52a7873863644905e0e5ce48b8eadbdd6468dbce.tar.bz2
rails-52a7873863644905e0e5ce48b8eadbdd6468dbce.zip
Add missing information regarding callbacks
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/active_record_querying.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md
index 6cfb6c5ca5..f8c64cbd0c 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -90,7 +90,7 @@ The primary operation of `Model.find(options)` can be summarized as:
* Convert the supplied options to an equivalent SQL query.
* Fire the SQL query and retrieve the corresponding results from the database.
* Instantiate the equivalent Ruby object of the appropriate model for every resulting row.
-* Run `after_find` callbacks, if any.
+* Run `after_find` and then `after_initialize` callbacks, if any.
### Retrieving a Single Object