aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-12-17 17:26:46 -0800
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-12-17 17:26:46 -0800
commitb6415428c863dd8148ef9b5998c8a29738c28afd (patch)
treea6979e319667fcf6ee75cdc40f78b423bd251022
parentf706d5f945c5751072bb90d080aff154e6858435 (diff)
parent24195d17b68c8e76c48aff59e4ead338fef512d7 (diff)
downloadrails-b6415428c863dd8148ef9b5998c8a29738c28afd.tar.gz
rails-b6415428c863dd8148ef9b5998c8a29738c28afd.tar.bz2
rails-b6415428c863dd8148ef9b5998c8a29738c28afd.zip
Merge pull request #13358 from JuanitoFatas/patch/release-notes
Prettify the removals from Action Controller in 4.1 release notes. [ci skip]
-rw-r--r--guides/source/4_1_release_notes.md16
1 files changed, 9 insertions, 7 deletions
diff --git a/guides/source/4_1_release_notes.md b/guides/source/4_1_release_notes.md
index 2c01970f63..f35c23acf1 100644
--- a/guides/source/4_1_release_notes.md
+++ b/guides/source/4_1_release_notes.md
@@ -292,13 +292,15 @@ for detailed changes.
* Removed deprecated constants from Action Controller:
- ActionController::AbstractRequest => ActionDispatch::Request
- ActionController::Request => ActionDispatch::Request
- ActionController::AbstractResponse => ActionDispatch::Response
- ActionController::Response => ActionDispatch::Response
- ActionController::Routing => ActionDispatch::Routing
- ActionController::Integration => ActionDispatch::Integration
- ActionController::IntegrationTest => ActionDispatch::IntegrationTest
+ | Removed | Successor |
+ |:-----------------------------------|:--------------------------------|
+ | ActionController::AbstractRequest | ActionDispatch::Request |
+ | ActionController::Request | ActionDispatch::Request |
+ | ActionController::AbstractResponse | ActionDispatch::Response |
+ | ActionController::Response | ActionDispatch::Response |
+ | ActionController::Routing | ActionDispatch::Routing |
+ | ActionController::Integration | ActionDispatch::Integration |
+ | ActionController::IntegrationTest | ActionDispatch::IntegrationTest |
### Notable changes