diff options
author | Bradley D <defektive@users.noreply.github.com> | 2015-09-17 16:37:03 -0600 |
---|---|---|
committer | defektive <sirbradleyd@gmail.com> | 2015-09-17 16:43:51 -0600 |
commit | 119f38f7954bfd804435d4d60bc2bc61a4e86ade (patch) | |
tree | 3e3cc09b5e4d20f02842e0f21d14a6dfd5b9beb7 | |
parent | 61f9e47feac75a2cf4ed9e092bac036294564168 (diff) | |
download | rails-119f38f7954bfd804435d4d60bc2bc61a4e86ade.tar.gz rails-119f38f7954bfd804435d4d60bc2bc61a4e86ade.tar.bz2 rails-119f38f7954bfd804435d4d60bc2bc61a4e86ade.zip |
Change AbstractRequest to ActionDispatch::Request
AbstractRequest has been deprecated, updating to refer to ActionDispatch::Request instead.
[ci skip]
-rw-r--r-- | guides/source/action_controller_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index 9ab2841619..7e43ba375a 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -810,7 +810,7 @@ The [Security Guide](security.html) has more about this and a lot of other secur The Request and Response Objects -------------------------------- -In every controller there are two accessor methods pointing to the request and the response objects associated with the request cycle that is currently in execution. The `request` method contains an instance of `AbstractRequest` and the `response` method returns a response object representing what is going to be sent back to the client. +In every controller there are two accessor methods pointing to the request and the response objects associated with the request cycle that is currently in execution. The `request` method contains an instance of `ActionDispatch::Request` and the `response` method returns a response object representing what is going to be sent back to the client. ### The `request` Object |