diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 12:27:42 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 12:27:42 -0300 |
commit | 60032545373c0aa900ca51082c996a11a926366c (patch) | |
tree | 05e9e904667d61cb83eae66340d04eaaa3d9ef95 /guides/source | |
parent | 6d72485b6977804a872dcfa5d7ade2cec74c768e (diff) | |
parent | 52a7873863644905e0e5ce48b8eadbdd6468dbce (diff) | |
download | rails-60032545373c0aa900ca51082c996a11a926366c.tar.gz rails-60032545373c0aa900ca51082c996a11a926366c.tar.bz2 rails-60032545373c0aa900ca51082c996a11a926366c.zip |
Merge pull request #18321 from mackshkatz/master
Add missing information regarding callbacks
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_querying.md | 2 |
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 |