diff options
author | yui-knk <spiketeika@gmail.com> | 2014-11-23 11:04:17 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2014-11-23 11:04:17 +0900 |
commit | 13b0ac7b69773813ffc3da91e2fa4040763c87d6 (patch) | |
tree | 65069d56a21060d578f49cbb2b87dffce2b3ab33 | |
parent | 6cd9e2bd29b26e1ea781fafce18614217b7adf7b (diff) | |
download | rails-13b0ac7b69773813ffc3da91e2fa4040763c87d6.tar.gz rails-13b0ac7b69773813ffc3da91e2fa4040763c87d6.tar.bz2 rails-13b0ac7b69773813ffc3da91e2fa4040763c87d6.zip |
Fix explanation for ActionDispatch::Callbacks.
ActionDispatch::Callbacks dose not run the prepare callbacks,
so change with comment on ActionDispatch::Callbacks.
-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 8bc2678d8f..968906cb5f 100644 --- a/guides/source/rails_on_rack.md +++ b/guides/source/rails_on_rack.md @@ -277,7 +277,7 @@ Much of Action Controller's functionality is implemented as Middlewares. The fol **`ActionDispatch::Callbacks`** -* Runs the prepare callbacks before serving the request. +* Provide callbacks to be executed before and after the request dispatch. **`ActiveRecord::Migration::CheckPending`** |