aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJuanito Fatas <katehuang0320@gmail.com>2013-12-18 09:15:40 +0800
committerJuanito Fatas <katehuang0320@gmail.com>2013-12-18 09:15:40 +0800
commit24195d17b68c8e76c48aff59e4ead338fef512d7 (patch)
treea6979e319667fcf6ee75cdc40f78b423bd251022 /guides
parentf706d5f945c5751072bb90d080aff154e6858435 (diff)
downloadrails-24195d17b68c8e76c48aff59e4ead338fef512d7.tar.gz
rails-24195d17b68c8e76c48aff59e4ead338fef512d7.tar.bz2
rails-24195d17b68c8e76c48aff59e4ead338fef512d7.zip
[ci skip] Prettify the removals from Action Controller in 4.1 release notes.
Diffstat (limited to 'guides')
-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