From 4ebd70b243d79cecda1ba55abce8e2ead78395d7 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Tue, 14 Jan 2020 12:03:26 +1300 Subject: [PATCH] Update lib/rack/response.rb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Rafael França --- lib/rack/response.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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