summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/rack/response.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rack/response.rb b/lib/rack/response.rb
index e3294900..a03e8490 100644
--- a/lib/rack/response.rb
+++ b/lib/rack/response.rb
@@ -21,7 +21,7 @@ module Rack
# Your application's +call+ should end returning Response#finish.
class Response
- def self.[] (status, headers, body)
+ def self.[](status, headers, body)
self.new(body, status, headers)
end