aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index bb578d81dc..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*
@@ -13,9 +13,9 @@
*Eilis Hamilton*
-* Add ActiveSupport::CurrentAttributes to provide a thread-isolated attributes singleton.
+* 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