diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-02-20 20:45:01 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-02-20 20:47:59 -0200 |
commit | 027d484f1d0c77855c09099091f7c3b5c976a7c0 (patch) | |
tree | b21ca15b134ebacf5d5b64b44197bb630435c605 /guides | |
parent | 7f5cf3a3daececa062299a2b9c86631aa0c3a0cb (diff) | |
download | rails-027d484f1d0c77855c09099091f7c3b5c976a7c0.tar.gz rails-027d484f1d0c77855c09099091f7c3b5c976a7c0.tar.bz2 rails-027d484f1d0c77855c09099091f7c3b5c976a7c0.zip |
Prefer request_id over uuid and test the alias
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/rails_on_rack.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md index 21be74beba..993cd5ac44 100644 --- a/guides/source/rails_on_rack.md +++ b/guides/source/rails_on_rack.md @@ -254,7 +254,7 @@ Much of Action Controller's functionality is implemented as Middlewares. The fol **`ActionDispatch::RequestId`** -* Makes a unique `X-Request-Id` header available to the response and enables the `ActionDispatch::Request#uuid` method. +* Makes a unique `X-Request-Id` header available to the response and enables the `ActionDispatch::Request#request_id` method. **`Rails::Rack::Logger`** |