diff options
author | Paul Nikitochkin <paul.nikitochkin@gmail.com> | 2013-07-30 21:30:10 +0300 |
---|---|---|
committer | Paul Nikitochkin <paul.nikitochkin@gmail.com> | 2013-07-30 22:52:48 +0300 |
commit | 63ba124fa4b29fc317c4103c9cd6b05220c6bbd2 (patch) | |
tree | 94c9374c41327594a0b4e293fd8982b8cebbbae9 /actionpack | |
parent | 77cf5cfc744b7c68559fa4b342c0f8bd04364c15 (diff) | |
download | rails-63ba124fa4b29fc317c4103c9cd6b05220c6bbd2.tar.gz rails-63ba124fa4b29fc317c4103c9cd6b05220c6bbd2.tar.bz2 rails-63ba124fa4b29fc317c4103c9cd6b05220c6bbd2.zip |
Improve documentation for controller how to get included helpers [ci skip]
Closes #11671
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/metal/helpers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/helpers.rb b/actionpack/lib/action_controller/metal/helpers.rb index 243fd40a7e..b53ae7f29f 100644 --- a/actionpack/lib/action_controller/metal/helpers.rb +++ b/actionpack/lib/action_controller/metal/helpers.rb @@ -5,7 +5,7 @@ module ActionController # # In addition to using the standard template helpers provided, creating custom helpers to # extract complicated logic or reusable functionality is strongly encouraged. By default, each controller - # will include all helpers. + # 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 |