diff options
author | Juanjo Bazán <jjbazan@gmail.com> | 2014-06-16 22:34:40 +0200 |
---|---|---|
committer | Juanjo Bazán <jjbazan@gmail.com> | 2014-06-16 22:34:40 +0200 |
commit | cede0363830e28e73feafc662eccae7d1db526bb (patch) | |
tree | 71c4a4eee99c555b51828a02fc1d06c676e17a1e /activesupport | |
parent | 34221cdcab7d145d22029174a990b3971616cc80 (diff) | |
download | rails-cede0363830e28e73feafc662eccae7d1db526bb.tar.gz rails-cede0363830e28e73feafc662eccae7d1db526bb.tar.bz2 rails-cede0363830e28e73feafc662eccae7d1db526bb.zip |
Formatting fix in AS changelog [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 5962dd255c..d513874aee 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -23,10 +23,13 @@ * Fixed precision error in NumberHelper when using Rationals. - before: + Before: + ActiveSupport::NumberHelper.number_to_rounded Rational(1000, 3), precision: 2 #=> "330.00" - after: + + After: + ActiveSupport::NumberHelper.number_to_rounded Rational(1000, 3), precision: 2 #=> "333.33" |