aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorFlorent Guilleux <florent2@gmail.com>2012-12-01 13:22:49 -0500
committerFlorent Guilleux <florent2@gmail.com>2012-12-01 13:22:49 -0500
commit8dc4041a9b2fb0e8bc2bcb72ab93adb8722e62cd (patch)
treed3c21858cb1a7fae8339b4542b200d59dc9ec815 /actionpack/lib/action_controller
parent90c887fa7d0c454b7533e208daefc342dea4d5f3 (diff)
downloadrails-8dc4041a9b2fb0e8bc2bcb72ab93adb8722e62cd.tar.gz
rails-8dc4041a9b2fb0e8bc2bcb72ab93adb8722e62cd.tar.bz2
rails-8dc4041a9b2fb0e8bc2bcb72ab93adb8722e62cd.zip
Revert "Remove trailing whitespaces"
This reverts commit 90c887fa7d0c454b7533e208daefc342dea4d5f3.
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/metal/mime_responds.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/mime_responds.rb b/actionpack/lib/action_controller/metal/mime_responds.rb
index 68417c8960..6bf306ac5b 100644
--- a/actionpack/lib/action_controller/metal/mime_responds.rb
+++ b/actionpack/lib/action_controller/metal/mime_responds.rb
@@ -259,7 +259,7 @@ module ActionController #:nodoc:
# * for other requests - i.e. data formats such as xml, json, csv etc, if
# the resource passed to +respond_with+ responds to <code>to_<format></code>,
# the method attempts to render the resource in the requested format
- # directly, e.g. for an xml request, the response is equivalent to calling
+ # directly, e.g. for an xml request, the response is equivalent to calling
# <code>render xml: resource</code>.
#
# === Nested resources