aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller/helpers.rb
diff options
context:
space:
mode:
authorBryan Ricker <bricker88@gmail.com>2013-03-16 15:21:42 -0700
committerBryan Ricker <bricker88@gmail.com>2013-03-16 15:21:42 -0700
commitfa63f83fd42bece15d06bbe77b6b717ebee5c188 (patch)
treeb289401690bab4cd80c5923e71e976b727fbb208 /actionpack/lib/abstract_controller/helpers.rb
parent387928c2348880c5801b422805a069e7c4910289 (diff)
downloadrails-fa63f83fd42bece15d06bbe77b6b717ebee5c188.tar.gz
rails-fa63f83fd42bece15d06bbe77b6b717ebee5c188.tar.bz2
rails-fa63f83fd42bece15d06bbe77b6b717ebee5c188.zip
Remove :all from *args options in AbstractController.helper
Diffstat (limited to 'actionpack/lib/abstract_controller/helpers.rb')
-rw-r--r--actionpack/lib/abstract_controller/helpers.rb2
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.