aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller
diff options
context:
space:
mode:
authorAlexey Vakhov <vakhov@gmail.com>2012-02-18 11:58:53 +0400
committerAlexey Vakhov <vakhov@gmail.com>2012-02-18 11:58:53 +0400
commit774e2c4d9c7c0542e5806d3dc7c0db4cf4dbca7f (patch)
tree293449b89cdc15080d2518ee9dc21f23beb8bbd0 /actionpack/lib/abstract_controller
parentf49ec92866f6d8f27617b5723bff99ac0f7ca92f (diff)
downloadrails-774e2c4d9c7c0542e5806d3dc7c0db4cf4dbca7f.tar.gz
rails-774e2c4d9c7c0542e5806d3dc7c0db4cf4dbca7f.tar.bz2
rails-774e2c4d9c7c0542e5806d3dc7c0db4cf4dbca7f.zip
Fix AbstractController::Base#hidden_actions comment
Diffstat (limited to 'actionpack/lib/abstract_controller')
-rw-r--r--actionpack/lib/abstract_controller/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/abstract_controller/base.rb b/actionpack/lib/abstract_controller/base.rb
index fd6a46fbec..3d915cf513 100644
--- a/actionpack/lib/abstract_controller/base.rb
+++ b/actionpack/lib/abstract_controller/base.rb
@@ -42,8 +42,8 @@ module AbstractController
controller.public_instance_methods(true)
end
- # The list of hidden actions to an empty array. Defaults to an
- # empty array. This can be modified by other modules or subclasses
+ # The list of hidden actions. Defaults to an empty array.
+ # This can be modified by other modules or subclasses
# to specify particular actions as hidden.
#
# ==== Returns