diff options
author | zhengjia <jiazheng@live.com> | 2010-11-16 09:26:21 -0600 |
---|---|---|
committer | zhengjia <jiazheng@live.com> | 2010-11-16 09:26:21 -0600 |
commit | 45e3827eb22b243c6bc4358fcbee7feed3de3873 (patch) | |
tree | d12d1a3fa3748387699be64d4de7c0a12862053d | |
parent | ca4b4c0baa240baea0eaf372283dbd33ec671b6a (diff) | |
download | rails-45e3827eb22b243c6bc4358fcbee7feed3de3873.tar.gz rails-45e3827eb22b243c6bc4358fcbee7feed3de3873.tar.bz2 rails-45e3827eb22b243c6bc4358fcbee7feed3de3873.zip |
Minor fix on Rails:Railtie documentation
-rw-r--r-- | railties/lib/rails/railtie.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/railtie.rb b/railties/lib/rails/railtie.rb index c76bc83377..030a838dc1 100644 --- a/railties/lib/rails/railtie.rb +++ b/railties/lib/rails/railtie.rb @@ -97,7 +97,7 @@ module Rails # If your railtie has rake tasks, you can tell Rails to load them through the method # rake tasks: # - # class MyRailtie < Railtie + # class MyRailtie < Rails::Railtie # rake_tasks do # load "path/to/my_railtie.tasks" # end @@ -107,7 +107,7 @@ module Rails # your generators at a different location, you can specify in your Railtie a block which # will load them during normal generators lookup: # - # class MyRailtie < Railtie + # class MyRailtie < Rails::Railtie # generators do # require "path/to/my_railtie_generator" # end |