diff options
author | Zachary Scott <e@zzak.io> | 2014-11-22 20:25:39 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-11-22 20:25:39 -0800 |
commit | 165d27440b0775ef29ea8a8da700fab3683b9805 (patch) | |
tree | d5fe669ea0d1f49591f97471e11f2de67be1e86f /actionpack/lib | |
parent | ddce3dd37d4076bab8f1e73be21851935e379254 (diff) | |
parent | 9cb831ff849b0e26ad4b06f24b55ef1b6d6866a4 (diff) | |
download | rails-165d27440b0775ef29ea8a8da700fab3683b9805.tar.gz rails-165d27440b0775ef29ea8a8da700fab3683b9805.tar.bz2 rails-165d27440b0775ef29ea8a8da700fab3683b9805.zip |
Merge pull request #17722 from yui-knk/fix/callbacks_comment
[ci skip] Fix comment of ActionDispatch::Callbacks
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/callbacks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/callbacks.rb b/actionpack/lib/action_dispatch/middleware/callbacks.rb index baf9d5779e..f80df78582 100644 --- a/actionpack/lib/action_dispatch/middleware/callbacks.rb +++ b/actionpack/lib/action_dispatch/middleware/callbacks.rb @@ -1,6 +1,6 @@ module ActionDispatch - # Provide callbacks to be executed before and after the request dispatch. + # Provides callbacks to be executed before and after dispatching the request. class Callbacks include ActiveSupport::Callbacks |