diff options
author | Evan Farrar <evanfarrar@gmail.com> | 2011-05-29 22:06:15 -0400 |
---|---|---|
committer | Evan Farrar <evanfarrar@gmail.com> | 2011-05-29 22:08:41 -0400 |
commit | 91b19186f7161bc2114613b15460fb29d632aff7 (patch) | |
tree | 2d85f4c726e9c363c83dcdb8c7cb096e8780aeb6 /railties/guides/source/initialization.textile | |
parent | ace750871527a54bab434aaf31b1e7d80f25aaea (diff) | |
download | rails-91b19186f7161bc2114613b15460fb29d632aff7.tar.gz rails-91b19186f7161bc2114613b15460fb29d632aff7.tar.bz2 rails-91b19186f7161bc2114613b15460fb29d632aff7.zip |
Spelling corrections in the guides.
Diffstat (limited to 'railties/guides/source/initialization.textile')
-rw-r--r-- | railties/guides/source/initialization.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/initialization.textile b/railties/guides/source/initialization.textile index 638830cd83..62b4f338ae 100644 --- a/railties/guides/source/initialization.textile +++ b/railties/guides/source/initialization.textile @@ -865,7 +865,7 @@ This method collects the initializers from the ancestors of this class and adds end </ruby> -So this <tt>+</tt> method is overriden to return a new collection comprising of the existing collection as an array and then using the <tt>Array#+</tt> method combines these two collections, returning a "super" +Collection+ object. In this case, the only initializer that's going to be in this new +Collection+ object is the +i18n.callbacks+ initializer. +So this <tt>+</tt> method is overridden to return a new collection comprising of the existing collection as an array and then using the <tt>Array#+</tt> method combines these two collections, returning a "super" +Collection+ object. In this case, the only initializer that's going to be in this new +Collection+ object is the +i18n.callbacks+ initializer. The next method to be called after this +initializer+ method is the +after_initialize+ method on the +config+ object, which is defined like this: |