aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJuanjo Bazán <jjbazan@gmail.com>2014-06-16 22:34:40 +0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-06-16 20:30:26 -0300
commit2c515b337f12278b92465e0f830901f6ce19fd60 (patch)
tree97249f762f0a324d05c87bc55ce221e958e6a60b /activesupport
parent0728d3b5f8556306c3d48068d7b54924aa5ef52f (diff)
downloadrails-2c515b337f12278b92465e0f830901f6ce19fd60.tar.gz
rails-2c515b337f12278b92465e0f830901f6ce19fd60.tar.bz2
rails-2c515b337f12278b92465e0f830901f6ce19fd60.zip
Formatting fix in AS changelog [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md7
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"