Skip to content

Commit 7643e5c

Browse files
ekoszwaterlink
authored andcommitted
[LINT] `&' interpreted as argument prefix
1 parent 138e2ea commit 7643e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rack/reverse_proxy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def initialize(app = nil, &b)
1313
@app = app || lambda {|env| [404, [], []] }
1414
@matchers = []
1515
@global_options = {:preserve_host => true, :x_forwarded_host => true, :matching => :all, :replace_response_host => false}
16-
instance_eval &b if block_given?
16+
instance_eval(&b) if block_given?
1717
end
1818

1919
def call(env)

0 commit comments

Comments
 (0)