aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-12-20 20:05:26 -0600
committerJoshua Peek <josh@joshpeek.com>2009-12-20 20:05:26 -0600
commit29c8a43056f40759a8c64cbcbd4e71d4283b233d (patch)
treee5797a3fbcd299c10ec788eb3bedd9801128a096 /actionpack/lib/action_controller/metal.rb
parent0f8a5c7954bfc134f46eeb72c4cc8744825cbb5a (diff)
downloadrails-29c8a43056f40759a8c64cbcbd4e71d4283b233d.tar.gz
rails-29c8a43056f40759a8c64cbcbd4e71d4283b233d.tar.bz2
rails-29c8a43056f40759a8c64cbcbd4e71d4283b233d.zip
Rename RackConvenience => RackDelegation
Diffstat (limited to 'actionpack/lib/action_controller/metal.rb')
-rw-r--r--actionpack/lib/action_controller/metal.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/metal.rb b/actionpack/lib/action_controller/metal.rb
index a1d857d2ce..8433be2320 100644
--- a/actionpack/lib/action_controller/metal.rb
+++ b/actionpack/lib/action_controller/metal.rb
@@ -45,7 +45,7 @@ module ActionController
# The details below can be overridden to support a specific
# Request and Response object. The default ActionController::Base
- # implementation includes RackConvenience, which makes a request
+ # implementation includes RackDelegation, which makes a request
# and response object available. You might wish to control the
# environment and response manually for performance reasons.
@@ -57,8 +57,8 @@ module ActionController
end
# Basic implementations for content_type=, location=, and headers are
- # provided to reduce the dependency on the RackConvenience module
- # in Rendering and Redirecting.
+ # provided to reduce the dependency on the RackDelegation module
+ # in Renderer and Redirector.
def content_type=(type)
headers["Content-Type"] = type.to_s