aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-12 06:34:27 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-12 06:34:27 -0700
commit329721e35194958ba86832e995775d02bacf8bc7 (patch)
treea87d23f6cd59a3723ef48150c18f413879853bf1
parent8a0881813e275e5809028270b48e5eddf6587c8a (diff)
parent49f25d93ec0f47e6cf86844d966a0a71977278ed (diff)
downloadrails-329721e35194958ba86832e995775d02bacf8bc7.tar.gz
rails-329721e35194958ba86832e995775d02bacf8bc7.tar.bz2
rails-329721e35194958ba86832e995775d02bacf8bc7.zip
Merge pull request #12206 from harshadsabne/master
Update 4_0_release_notes.md
-rw-r--r--guides/source/4_0_release_notes.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md
index e070ef6031..072be49412 100644
--- a/guides/source/4_0_release_notes.md
+++ b/guides/source/4_0_release_notes.md
@@ -190,13 +190,13 @@ Please refer to the [Changelog](https://github.com/rails/rails/blob/master/activ
* Deprecate `ActiveSupport::TestCase#pending` method, use `skip` from MiniTest instead.
-* ActiveSupport::Benchmarkable#silence has been deprecated due to its lack of thread safety. It will be removed without replacement in Rails 4.1.
+* `ActiveSupport::Benchmarkable#silence` has been deprecated due to its lack of thread safety. It will be removed without replacement in Rails 4.1.
* `ActiveSupport::JSON::Variable` is deprecated. Define your own `#as_json` and `#encode_json` methods for custom JSON string literals.
-* Deprecates the compatibility method Module#local_constant_names, use Module#local_constants instead (which returns symbols).
+* Deprecates the compatibility method `Module#local_constant_names`, use `Module#local_constants` instead (which returns symbols).
-* BufferedLogger is deprecated. Use ActiveSupport::Logger, or the logger from Ruby standard library.
+* `BufferedLogger` is deprecated. Use `ActiveSupport::Logger`, or the logger from Ruby standard library.
* Deprecate `assert_present` and `assert_blank` in favor of `assert object.blank?` and `assert object.present?`