From 774e2c4d9c7c0542e5806d3dc7c0db4cf4dbca7f Mon Sep 17 00:00:00 2001 From: Alexey Vakhov Date: Sat, 18 Feb 2012 11:58:53 +0400 Subject: [PATCH] Fix AbstractController::Base#hidden_actions comment --- actionpack/lib/abstract_controller/base.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionpack/lib/abstract_controller/base.rb b/actionpack/lib/abstract_controller/base.rb index fd6a46fbecf..3d915cf5135 100644 --- a/actionpack/lib/abstract_controller/base.rb +++ b/actionpack/lib/abstract_controller/base.rb @@ -42,8 +42,8 @@ def internal_methods 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