aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware
diff options
context:
space:
mode:
authorMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-05-03 02:50:31 +0300
committerMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-05-03 02:50:31 +0300
commite4dd700b5d29ed19c3b5a66a5a968ebfc94ce1d2 (patch)
tree983a34c9d1582a6949e68653cda491bed4a318e5 /actionpack/lib/action_dispatch/middleware
parent76836ef7db8d0b1e40492c9a62f7c637718d813d (diff)
downloadrails-e4dd700b5d29ed19c3b5a66a5a968ebfc94ce1d2.tar.gz
rails-e4dd700b5d29ed19c3b5a66a5a968ebfc94ce1d2.tar.bz2
rails-e4dd700b5d29ed19c3b5a66a5a968ebfc94ce1d2.zip
Use ruby 1.9 lambda syntax in documentations [ci skip]
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware')
-rw-r--r--actionpack/lib/action_dispatch/middleware/reloader.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/reloader.rb b/actionpack/lib/action_dispatch/middleware/reloader.rb
index 15b5a48535..6c7fba00cb 100644
--- a/actionpack/lib/action_dispatch/middleware/reloader.rb
+++ b/actionpack/lib/action_dispatch/middleware/reloader.rb
@@ -11,9 +11,9 @@ module ActionDispatch
# the response body. This is important for streaming responses such as the
# following:
#
- # self.response_body = lambda { |response, output|
+ # self.response_body = -> (response, output) do
# # code here which refers to application models
- # }
+ # end
#
# Cleanup callbacks will not be called until after the response_body lambda
# is evaluated, ensuring that it can refer to application models and other