diff options
author | kishore-mohan <kishorevlrtn@gmail.com> | 2015-09-01 20:07:37 +0530 |
---|---|---|
committer | kishore-mohan <kishorevlrtn@gmail.com> | 2015-09-02 09:19:47 +0530 |
commit | cf82b2e034cb99afde9c19babbb96276d3804c5b (patch) | |
tree | d81c3ca7255dfb79803caddaa91a70802a795d3d /actionpack/lib/action_controller | |
parent | dc5cf37d7379e297196dbe542b958b1114ef840e (diff) | |
download | rails-cf82b2e034cb99afde9c19babbb96276d3804c5b.tar.gz rails-cf82b2e034cb99afde9c19babbb96276d3804c5b.tar.bz2 rails-cf82b2e034cb99afde9c19babbb96276d3804c5b.zip |
typo "description not clear corrected with proper description and action_controller_overview file Rails' -> Rails" [ci skip]
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/metal/helpers.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/helpers.rb b/actionpack/lib/action_controller/metal/helpers.rb index fcaf3e6425..d3853e2e83 100644 --- a/actionpack/lib/action_controller/metal/helpers.rb +++ b/actionpack/lib/action_controller/metal/helpers.rb @@ -7,8 +7,8 @@ module ActionController # extract complicated logic or reusable functionality is strongly encouraged. By default, each controller # will include all helpers. These helpers are only accessible on the controller through <tt>.helpers</tt> # - # In previous versions of \Rails the controller will include a helper whose - # name matches that of the controller, e.g., <tt>MyController</tt> will automatically + # In previous versions of \Rails the controller will include a helper which + # matches the name of the controller, e.g., <tt>MyController</tt> will automatically # include <tt>MyHelper</tt>. To return old behavior set +config.action_controller.include_all_helpers+ to +false+. # # Additional helpers can be specified using the +helper+ class method in ActionController::Base or any |