aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHongli Lai (Phusion) <hongli@phusion.nl>2008-07-18 21:42:03 +0200
committerHongli Lai (Phusion) <hongli@phusion.nl>2008-07-18 21:42:03 +0200
commit5508bfd0ffd213d3fced945326a1601fef9694e5 (patch)
treed450ceb74f20617feae6f5014a9149cc3944fb84
parent3dbc1cfeb3e9984fa4584b231d3bb78ff1a94f9c (diff)
downloadrails-5508bfd0ffd213d3fced945326a1601fef9694e5.tar.gz
rails-5508bfd0ffd213d3fced945326a1601fef9694e5.tar.bz2
rails-5508bfd0ffd213d3fced945326a1601fef9694e5.zip
Fix markup.
-rw-r--r--actionpack/lib/action_controller/integration.rb4
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+.