diff options
author | Hongli Lai (Phusion) <hongli@phusion.nl> | 2008-07-18 21:42:03 +0200 |
---|---|---|
committer | Hongli Lai (Phusion) <hongli@phusion.nl> | 2008-07-18 21:42:03 +0200 |
commit | 5508bfd0ffd213d3fced945326a1601fef9694e5 (patch) | |
tree | d450ceb74f20617feae6f5014a9149cc3944fb84 | |
parent | 3dbc1cfeb3e9984fa4584b231d3bb78ff1a94f9c (diff) | |
download | rails-5508bfd0ffd213d3fced945326a1601fef9694e5.tar.gz rails-5508bfd0ffd213d3fced945326a1601fef9694e5.tar.bz2 rails-5508bfd0ffd213d3fced945326a1601fef9694e5.zip |
Fix markup.
-rw-r--r-- | actionpack/lib/action_controller/integration.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/integration.rb b/actionpack/lib/action_controller/integration.rb index 66552e1771..43158ea412 100644 --- a/actionpack/lib/action_controller/integration.rb +++ b/actionpack/lib/action_controller/integration.rb @@ -176,8 +176,8 @@ module ActionController # # This method returns an AbstractResponse object, which one can use to inspect # the details of the response. Furthermore, if this method was called from an - # ActionController::IntegrationTest object, then that object's +@response+ instance - # variable will point to the same response object. + # ActionController::IntegrationTest object, then that object's <tt>@response</tt> + # instance variable will point to the same response object. # # You can also perform POST, PUT, DELETE, and HEAD requests with +post+, # +put+, +delete+, and +head+. |