diff options
author | juandebravo <juandebravo@gmail.com> | 2011-11-01 20:45:00 +0200 |
---|---|---|
committer | juandebravo <juandebravo@gmail.com> | 2011-11-01 20:45:00 +0200 |
commit | ed4bde5a0937f8eadfd806b1f579048bf5ac9b07 (patch) | |
tree | f67a7d2996c31032c627270820d48143291bd95f | |
parent | 702aecb126712de9f996da74357cafe14f449d24 (diff) | |
download | rails-ed4bde5a0937f8eadfd806b1f579048bf5ac9b07.tar.gz rails-ed4bde5a0937f8eadfd806b1f579048bf5ac9b07.tar.bz2 rails-ed4bde5a0937f8eadfd806b1f579048bf5ac9b07.zip |
Fix wrong link in initialization doc
-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 f88405a2fd..7710c9bd6c 100644 --- a/railties/guides/source/initialization.textile +++ b/railties/guides/source/initialization.textile @@ -817,7 +817,7 @@ def initializer(name, opts = {}, &blk) end </ruby> -An initializer can be configured to run before or after another initializer, which we'll see a couple of times throughout this initialization process. Anything that inherits from +Rails::Railtie+ may also make use of the +initializer+ method, something which is covered in the "Configuration guide":[http://ryanbigg.com/guides/configuring.html#rails-railtie-initializer]. +An initializer can be configured to run before or after another initializer, which we'll see a couple of times throughout this initialization process. Anything that inherits from +Rails::Railtie+ may also make use of the +initializer+ method, something which is covered in the "Configuration guide":http://guides.rubyonrails.org/configuring.html#rails-railtie-initializer. The +Initializer+ class here is defined within the +Rails::Initializable+ module and its +initialize+ method is defined to just set up a couple of variables: |