aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-08-12 18:40:14 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-08-12 18:40:14 +0530
commit51a759a745b065b335a0c8f49439118ac8e04586 (patch)
tree4fd33adca732b4d179addeecdc3a73ddf83b5151 /actionpack/lib/action_dispatch/middleware
parent9424b48d39fc2f646f34ffb088568a148313c0e8 (diff)
downloadrails-51a759a745b065b335a0c8f49439118ac8e04586.tar.gz
rails-51a759a745b065b335a0c8f49439118ac8e04586.tar.bz2
rails-51a759a745b065b335a0c8f49439118ac8e04586.zip
use 'based on' instead of 'based off' [ci skip]
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware')
-rw-r--r--actionpack/lib/action_dispatch/middleware/request_id.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/request_id.rb b/actionpack/lib/action_dispatch/middleware/request_id.rb
index 5d1740d0d4..25658bac3d 100644
--- a/actionpack/lib/action_dispatch/middleware/request_id.rb
+++ b/actionpack/lib/action_dispatch/middleware/request_id.rb
@@ -5,7 +5,7 @@ module ActionDispatch
# Makes a unique request id available to the action_dispatch.request_id env variable (which is then accessible through
# ActionDispatch::Request#uuid) and sends the same id to the client via the X-Request-Id header.
#
- # The unique request id is either based off the X-Request-Id header in the request, which would typically be generated
+ # The unique request id is either based on the X-Request-Id header in the request, which would typically be generated
# by a firewall, load balancer, or the web server, or, if this header is not available, a random uuid. If the
# header is accepted from the outside world, we sanitize it to a max of 255 chars and alphanumeric and dashes only.
#