Skip to content

Commit 33a0873

Browse files
authored
Fix README: avoid NoMethodError in the first example.
1 parent aa13c4d commit 33a0873

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use Rack::ReverseProxy do
3939
end
4040

4141
app = proc do |env|
42-
[ 200, {'Content-Type' => 'text/plain'}, "b" ]
42+
[ 200, {'Content-Type' => 'text/plain'}, ["b"] ]
4343
end
4444
run app
4545
```

0 commit comments

Comments
 (0)