diff options
author | Tore Darell <toredarell@gmail.com> | 2008-11-09 23:25:05 +0100 |
---|---|---|
committer | Tore Darell <toredarell@gmail.com> | 2008-11-09 23:25:05 +0100 |
commit | f599c5844ed0f971a6463668393692ec03c60bd7 (patch) | |
tree | dd6efa5f77e6c36a0573dbdb42ce4d0709e4ec95 /railties/doc/guides | |
parent | fb30b82bd0a0f2dc9974aea1fe2e32fb6d2b41a7 (diff) | |
download | rails-f599c5844ed0f971a6463668393692ec03c60bd7.tar.gz rails-f599c5844ed0f971a6463668393692ec03c60bd7.tar.bz2 rails-f599c5844ed0f971a6463668393692ec03c60bd7.zip |
Fix typo in section about request/response
Diffstat (limited to 'railties/doc/guides')
-rw-r--r-- | railties/doc/guides/source/actioncontroller_basics/request_response_objects.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/actioncontroller_basics/request_response_objects.txt b/railties/doc/guides/source/actioncontroller_basics/request_response_objects.txt index 250f84bd72..07a8ec2574 100644 --- a/railties/doc/guides/source/actioncontroller_basics/request_response_objects.txt +++ b/railties/doc/guides/source/actioncontroller_basics/request_response_objects.txt @@ -4,7 +4,7 @@ In every controller there are two accessor methods pointing to the request and t === The +request+ Object === -The request object contains a lot of useful information about the request coming in from the client. To get a full list of the available methods, refer to the link:http://api.rubyonrails.org/classes/ActionController/AbstractRequest.html[API documentation]. Among the properties that you can access on this object: +The request object contains a lot of useful information about the request coming in from the client. To get a full list of the available methods, refer to the link:http://api.rubyonrails.org/classes/ActionController/AbstractRequest.html[API documentation]. Among the properties that you can access on this object are: * host - The hostname used for this request. * domain - The hostname without the first segment (usually "www"). |