diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2015-12-27 16:10:34 +0100 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2015-12-27 16:10:34 +0100 |
commit | 46bbdf58b50a34986d671091a0a7188b66492cd5 (patch) | |
tree | 6c1b1900431f3669f74f7751196cc344c7e797b6 /activesupport | |
parent | a13032cab141c3faa99702a1de904192d99a07ea (diff) | |
download | rails-46bbdf58b50a34986d671091a0a7188b66492cd5.tar.gz rails-46bbdf58b50a34986d671091a0a7188b66492cd5.tar.bz2 rails-46bbdf58b50a34986d671091a0a7188b66492cd5.zip |
[ci skip] Fix typos in Active Support changelog.
It's numeric and the framework is called Action Controller.
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index a89b0ecab4..3117fa49a0 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,6 +1,6 @@ ## Rails 5.0.0.beta1 (December 18, 2015) ## -* Add petabyte and exabyte numberic conversion. +* Add petabyte and exabyte numeric conversion. *Akshay Vishnoi* @@ -18,7 +18,7 @@ def self.reset() self.account = self.user = nil end end - class ApplicationController < ActiveController::Base + class ApplicationController < ActionController::Base before_action :set_current after_action { Current.reset } |