aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-03-13 16:21:41 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2012-03-14 12:46:23 -0300
commit4c16791f355c74f8e6ad916e67fd4ae81efbf708 (patch)
tree4d0bac9dddd90c1b7ffaea3f309e79c0b7468154 /actionpack/lib/action_controller/base.rb
parentcc1c4acc8eeee4287627b1d184d7d04a22eddb27 (diff)
downloadrails-4c16791f355c74f8e6ad916e67fd4ae81efbf708.tar.gz
rails-4c16791f355c74f8e6ad916e67fd4ae81efbf708.tar.bz2
rails-4c16791f355c74f8e6ad916e67fd4ae81efbf708.zip
Add ActionController::HTTP
More info http://edgeguides.rubyonrails.org/api_app.html [Carlos Antonio da Silva & Santiago Pastorino]
Diffstat (limited to 'actionpack/lib/action_controller/base.rb')
-rw-r--r--actionpack/lib/action_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 6ce78f34b5..71425cd542 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -171,7 +171,7 @@ module ActionController
class Base < Metal
abstract!
- # Shortcut helper that returns all the ActionController modules except the ones passed in the argument:
+ # Shortcut helper that returns all the ActionController::Base modules except the ones passed in the argument:
#
# class MetalController
# ActionController::Base.without_modules(:ParamsWrapper, :Streaming).each do |left|