From 060fca78970e54b6400296325a212632de727b21 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Sat, 30 Mar 2013 16:42:52 -0300 Subject: Fix formatting and minor review in AP changelog Sentences starting with # are considered headings. --- actionpack/CHANGELOG.md | 17 ++++++++--------- 1 file 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. -- cgit v1.2.3