aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-09-17 20:12:56 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-09-17 20:12:56 -0300
commitc776bbb15a9917d16977d2b87f856083bc3f0781 (patch)
tree3e3cc09b5e4d20f02842e0f21d14a6dfd5b9beb7 /guides
parent61f9e47feac75a2cf4ed9e092bac036294564168 (diff)
parent119f38f7954bfd804435d4d60bc2bc61a4e86ade (diff)
downloadrails-c776bbb15a9917d16977d2b87f856083bc3f0781.tar.gz
rails-c776bbb15a9917d16977d2b87f856083bc3f0781.tar.bz2
rails-c776bbb15a9917d16977d2b87f856083bc3f0781.zip
Merge pull request #21658 from defektive/patch-1
Change AbstractRequest to ActionDispatch::Request
Diffstat (limited to 'guides')
-rw-r--r--guides/source/action_controller_overview.md2
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