aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib
diff options
context:
space:
mode:
authoramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-09-22 07:17:13 +0530
committeramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-09-22 07:38:02 +0530
commitf077cc6f41cdedf1d5cdeb994c9fa3335fa51126 (patch)
tree485b7bab6f1050e0ca74f4dbcc557a5d40f9c9e7 /actionview/lib
parentb694796da076b1a0ceb0ffbaa66964c1914397c8 (diff)
downloadrails-f077cc6f41cdedf1d5cdeb994c9fa3335fa51126.tar.gz
rails-f077cc6f41cdedf1d5cdeb994c9fa3335fa51126.tar.bz2
rails-f077cc6f41cdedf1d5cdeb994c9fa3335fa51126.zip
Correcting output of `number_to_percentage` example in `number_helper` [ci skip]
Here is correct output of `number_to_percentage(100, format: "%n %”)`
Diffstat (limited to 'actionview/lib')
-rw-r--r--actionview/lib/action_view/helpers/number_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/number_helper.rb b/actionview/lib/action_view/helpers/number_helper.rb
index 470dc86d6c..d7182d1fac 100644
--- a/actionview/lib/action_view/helpers/number_helper.rb
+++ b/actionview/lib/action_view/helpers/number_helper.rb
@@ -139,7 +139,7 @@ module ActionView
# number_to_percentage(302.24398923423, precision: 5) # => 302.24399%
# number_to_percentage(1000, locale: :fr) # => 1 000,000%
# number_to_percentage("98a") # => 98a%
- # number_to_percentage(100, format: "%n %") # => 100 %
+ # number_to_percentage(100, format: "%n %") # => 100.000 %
#
# number_to_percentage("98a", raise: true) # => InvalidNumberError
def number_to_percentage(number, options = {})