DEV: fixed capitalization in rate limit message (#11193)

This commit is contained in:
Tobias Eigen 2020-11-10 17:35:03 -08:00 committed by GitHub
parent cdb7ddc258
commit 0a0fd6eace
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ class Middleware::RequestTracker
request = Rack::Request.new(env)
if rate_limit(request)
result = [429, {}, ["Slow down, too Many Requests from this IP Address"]]
result = [429, {}, ["Slow down, too many requests from this IP address"]]
return result
end