diff options
author | Bryan Ricker <bricker88@gmail.com> | 2013-03-16 15:21:42 -0700 |
---|---|---|
committer | Bryan Ricker <bricker88@gmail.com> | 2013-03-16 15:21:42 -0700 |
commit | fa63f83fd42bece15d06bbe77b6b717ebee5c188 (patch) | |
tree | b289401690bab4cd80c5923e71e976b727fbb208 /actionpack | |
parent | 387928c2348880c5801b422805a069e7c4910289 (diff) | |
download | rails-fa63f83fd42bece15d06bbe77b6b717ebee5c188.tar.gz rails-fa63f83fd42bece15d06bbe77b6b717ebee5c188.tar.bz2 rails-fa63f83fd42bece15d06bbe77b6b717ebee5c188.zip |
Remove :all from *args options in AbstractController.helper
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/abstract_controller/helpers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/abstract_controller/helpers.rb b/actionpack/lib/abstract_controller/helpers.rb index 812a35735f..bb701184e8 100644 --- a/actionpack/lib/abstract_controller/helpers.rb +++ b/actionpack/lib/abstract_controller/helpers.rb @@ -59,7 +59,7 @@ module AbstractController # The +helper+ class method can take a series of helper module names, a block, or both. # # ==== Options - # * <tt>*args</tt> - Module, Symbol, String, :all + # * <tt>*args</tt> - Module, Symbol, String # * <tt>block</tt> - A block defining helper methods # # When the argument is a module it will be included directly in the template class. |