aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-05-29 19:46:01 -0400
committerJon Moss <me@jonathanmoss.me>2017-05-29 19:46:01 -0400
commit9050f6ee0133e9088f914a77bb65108a89f49dfd (patch)
tree8537c74b8290c7cde9aded8e626f9dc60d93b2f7 /activesupport/CHANGELOG.md
parentc47e6ffbd55a76b15e640d10548b73070fd37c94 (diff)
downloadrails-9050f6ee0133e9088f914a77bb65108a89f49dfd.tar.gz
rails-9050f6ee0133e9088f914a77bb65108a89f49dfd.tar.bz2
rails-9050f6ee0133e9088f914a77bb65108a89f49dfd.zip
Fix indentation + remove blank line
[ci skip]
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 1cf4d30898..fd07187e15 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,11 +1,11 @@
* Add default option to class_attribute. Before:
- class_attribute :settings
- self.settings = {}
+ class_attribute :settings
+ self.settings = {}
Now:
- class_attribute :settings, default: {}
+ class_attribute :settings, default: {}
*DHH*
@@ -15,7 +15,7 @@
* Add `ActiveSupport::CurrentAttributes` to provide a thread-isolated attributes singleton.
Primary use case is keeping all the per-request attributes easily available to the whole system.
-
+
*DHH*
* Fix implicit coercion calculations with scalars and durations