aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-03-30 16:42:52 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-03-30 16:42:52 -0300
commit060fca78970e54b6400296325a212632de727b21 (patch)
tree83c7480e03c6ac26b0a3bd07dc653263d50bbbd1 /actionpack/CHANGELOG.md
parentbac6928eefffcacc84887aec9a81ec2e642ab42d (diff)
downloadrails-060fca78970e54b6400296325a212632de727b21.tar.gz
rails-060fca78970e54b6400296325a212632de727b21.tar.bz2
rails-060fca78970e54b6400296325a212632de727b21.zip
Fix formatting and minor review in AP changelog
Sentences starting with # are considered headings.
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md17
1 files changed, 8 insertions, 9 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 1f4e356952..89029af3e9 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,28 +1,27 @@
## unreleased ##
-* Fixed assets loading performance in 3.2.13.
+* Fix assets loading performance in 3.2.13.
- #8756 uses Sprockets for resolving files that already exists on disk, for those files
- their extensions don't need to be rewritten.
+ Issue #8756 uses Sprockets for resolving files that already exist on disk,
+ for those files their extensions don't need to be rewritten.
Fixes #9803.
*Fred Wu*
-* Fixed `ActionController#action_missing` not being called.
-
+* Fix `ActionController#action_missing` not being called.
Fixes #9799.
*Janko Luin*
-* `ActiveSupport::NumberHelper#number_to_human` returns the number unaltered when
+* `ActionView::Helpers::NumberHelper#number_to_human` returns the number unaltered when
the units hash does not contain the needed key, e.g. when the number provided is less
- than the largest key proivided.
+ than the largest key provided.
Examples:
- number_to_human(123, :units => {}) # => 123
- number_to_human(123, :units => {:thousand => 'k'}) # => 123
+ number_to_human(123, units: {}) # => 123
+ number_to_human(123, units: { thousand: 'k' }) # => 123
Fixes #9269.
Backport #9347.