aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch
diff options
context:
space:
mode:
authorJohn Firebaugh <john_firebaugh@us.ibm.com>2010-12-21 19:32:34 -0800
committerJohn Firebaugh <john_firebaugh@us.ibm.com>2010-12-21 19:32:34 -0800
commit0b0e6f13c02a425f60bfed9db401392d72f419c6 (patch)
tree94cebf5a94e5cf7a2684f68ef384b6a1be7258bc /actionpack/lib/action_dispatch
parentd4afde9ab025854b35634af51fe2ef4edf1f8549 (diff)
downloadrails-0b0e6f13c02a425f60bfed9db401392d72f419c6.tar.gz
rails-0b0e6f13c02a425f60bfed9db401392d72f419c6.tar.bz2
rails-0b0e6f13c02a425f60bfed9db401392d72f419c6.zip
Typo (request -> response)
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r--actionpack/lib/action_dispatch/middleware/reloader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/reloader.rb b/actionpack/lib/action_dispatch/middleware/reloader.rb
index efa0bc7129..7624a1871a 100644
--- a/actionpack/lib/action_dispatch/middleware/reloader.rb
+++ b/actionpack/lib/action_dispatch/middleware/reloader.rb
@@ -6,7 +6,7 @@ module ActionDispatch
# after each request. In this respect they are analogs of ActionDispatch::Callback's
# before and after callbacks. However, cleanup callbacks are not called until the
# request is fully complete -- that is, after #close has been called on
- # the request body. This is important for streaming responses such as the
+ # the response body. This is important for streaming responses such as the
# following:
#
# self.response_body = lambda { |response, output|