aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristine Yen <cyen@christineyen.com>2011-06-15 03:18:28 -0700
committerChristine Yen <cyen@christineyen.com>2011-06-15 03:18:28 -0700
commit0a67b745be4eeb756160e6fa690e6551e0dde5ab (patch)
treedc89866b46ddd2b29073d0d569d39d2e2c4bdf42
parentc6381657b7c9dbf38d2afad61c61ad000c190927 (diff)
downloadrails-0a67b745be4eeb756160e6fa690e6551e0dde5ab.tar.gz
rails-0a67b745be4eeb756160e6fa690e6551e0dde5ab.tar.bz2
rails-0a67b745be4eeb756160e6fa690e6551e0dde5ab.zip
Tweak linebreak in ActionController::Redirecting doc
-rw-r--r--actionpack/lib/action_controller/metal/redirecting.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/redirecting.rb b/actionpack/lib/action_controller/metal/redirecting.rb
index 99e200caa5..dee7eb1ec8 100644
--- a/actionpack/lib/action_controller/metal/redirecting.rb
+++ b/actionpack/lib/action_controller/metal/redirecting.rb
@@ -42,8 +42,8 @@ module ActionController
# redirect_to :action=>'atom', :status => 302
#
# The status code can either be a standard {HTTP Status code}[http://www.iana.org/assignments/http-status-codes] as an
- # integer, or a symbol representing the downcased, underscored and symbolized description. Note that the status code
- # must be a 3xx HTTP code, or redirection will not occur.
+ # integer, or a symbol representing the downcased, underscored and symbolized description.
+ # Note that the status code must be a 3xx HTTP code, or redirection will not occur.
#
# It is also possible to assign a flash message as part of the redirection. There are two special accessors for commonly used the flash names
# +alert+ and +notice+ as well as a general purpose +flash+ bucket.