diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2012-02-13 15:54:21 +1300 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2012-02-16 08:29:52 -0500 |
commit | 46b4a261327b0725dc4e52593c9b05ce6e96aeb6 (patch) | |
tree | 52e64994347e613b391843eb311a142398bd12a7 /railties | |
parent | dadace4c9d1ee5ee4ad49254828a1ea8410aee34 (diff) | |
download | rails-46b4a261327b0725dc4e52593c9b05ce6e96aeb6.tar.gz rails-46b4a261327b0725dc4e52593c9b05ce6e96aeb6.tar.bz2 rails-46b4a261327b0725dc4e52593c9b05ce6e96aeb6.zip |
Rails::Engine docs should use helper method, not helpers
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/engine.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb index 77a68eb7f1..ca7f31e05a 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -300,7 +300,7 @@ module Rails # helper MyEngine::SharedEngineHelper # end # - # If you want to include all of the engine's helpers, you can use #helpers method on an engine's + # If you want to include all of the engine's helpers, you can use #helper method on an engine's # instance: # # class ApplicationController < ActionController::Base |