aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-09-17 12:40:45 +0400
committerXavier Noria <fxn@hashref.com>2012-09-17 17:32:19 +0200
commita8b21aca31e64a3d7f96b69d28107fb78d426029 (patch)
tree7d2bacc65d52358fa5ec2017b8a05c48fad4dc13 /actionpack
parent2919f0df9a483e8834d645b3ec02efd72494edad (diff)
downloadrails-a8b21aca31e64a3d7f96b69d28107fb78d426029.tar.gz
rails-a8b21aca31e64a3d7f96b69d28107fb78d426029.tar.bz2
rails-a8b21aca31e64a3d7f96b69d28107fb78d426029.zip
revises the RDoc of AC::Base.without_modules
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 3dfc4e4e89..84e8c2a698 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -178,8 +178,8 @@ module ActionController
# Returns an ActionDispatch::Response that represents the current
# response.
- # Shortcut helper that returns all the <tt>ActionController::Base</tt>
- # modules except the ones passed in the argument:
+ # Shortcut helper that returns all the modules included in
+ # ActionController::Base except the ones passed as arguments:
#
# class MetalController
# ActionController::Base.without_modules(:ParamsWrapper, :Streaming).each do |left|