diff options
author | Matthew Daubert <mdaubert@gmail.com> | 2011-05-22 21:17:38 -0400 |
---|---|---|
committer | Matthew Daubert <mdaubert@gmail.com> | 2011-05-22 21:17:38 -0400 |
commit | cb7677180ba4b04d96bd6907305c04049950b1c7 (patch) | |
tree | 14bf8392b89b15d0173af6a63f46398f0e3302c3 | |
parent | 378968522164d798bb82505838b83a195aac9cf7 (diff) | |
download | rails-cb7677180ba4b04d96bd6907305c04049950b1c7.tar.gz rails-cb7677180ba4b04d96bd6907305c04049950b1c7.tar.bz2 rails-cb7677180ba4b04d96bd6907305c04049950b1c7.zip |
Minor typo describing engine helpers
-rw-r--r-- | railties/lib/rails/engine.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb index 6dcc99e4e8..de004700ab 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -296,7 +296,7 @@ module Rails # helper MyEngine::SharedEngineHelper # end # - # If you want to include all of the engine's helpers, you can use #helpers method on egine's + # If you want to include all of the engine's helpers, you can use #helpers method on an engine's # instance: # # class ApplicationController < ActionController::Base @@ -305,7 +305,7 @@ module Rails # # It will include all of the helpers from engine's directory. Take into account that this does # not include helpers defined in controllers with helper_method or other similar solutions, - # only helpers defined in helpers directory will be included. + # only helpers defined in the helpers directory will be included. # # == Migrations & seed data # |