diff --git a/lib/rack/response.rb b/lib/rack/response.rb index e32949009..a03e84909 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