diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-08-20 14:16:15 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-08-20 14:16:15 -0700 |
commit | 165fb830d0876b90578e2f96fe5946b53120c621 (patch) | |
tree | afca6b7bff042e07376c6a4e9f4b7166a31dcb0f /actionpack/lib/action_controller | |
parent | 1299640ea587c6a8895dd16a6e7f865441e51596 (diff) | |
parent | 31d38d37d394f6ebbac57ce48f465805edbfec04 (diff) | |
download | rails-165fb830d0876b90578e2f96fe5946b53120c621.tar.gz rails-165fb830d0876b90578e2f96fe5946b53120c621.tar.bz2 rails-165fb830d0876b90578e2f96fe5946b53120c621.zip |
Merge pull request #2596 from dharmatech/patch-1
ActionController::Redirecting : fix docs typo
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/metal/redirecting.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/redirecting.rb b/actionpack/lib/action_controller/metal/redirecting.rb index dee7eb1ec8..4f311a1cf5 100644 --- a/actionpack/lib/action_controller/metal/redirecting.rb +++ b/actionpack/lib/action_controller/metal/redirecting.rb @@ -45,7 +45,7 @@ module ActionController # 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 + # It is also possible to assign a flash message as part of the redirection. There are two special accessors for the commonly used flash names # +alert+ and +notice+ as well as a general purpose +flash+ bucket. # # Examples: |