Merge pull request #82 from brchristian/patch-1

Fix typo in README.md
This commit is contained in:
Aaron Suggs 2014-08-15 12:21:16 -04:00
commit ba52e2ce15

View file

@ -113,7 +113,7 @@ end
```ruby
# Block requests from 1.2.3.4
Rack::Attack.blacklist('block 1.2.3.4') do |req|
# Request are blocked if the return value is truthy
# Requests are blocked if the return value is truthy
'1.2.3.4' == req.ip
end