diff options
author | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2014-06-10 22:16:13 +0530 |
---|---|---|
committer | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2014-06-10 22:16:13 +0530 |
commit | 9bb0f1e08a0c433d7581aecb1c5764c5fd540fa9 (patch) | |
tree | 156c6393bf3a21ae2e3dba9fe59ee3d93dff901d | |
parent | 4d209b5daf0eba4c8d008e9d009d0576e04f40d1 (diff) | |
download | rails-9bb0f1e08a0c433d7581aecb1c5764c5fd540fa9.tar.gz rails-9bb0f1e08a0c433d7581aecb1c5764c5fd540fa9.tar.bz2 rails-9bb0f1e08a0c433d7581aecb1c5764c5fd540fa9.zip |
[ci skip] Correct output and use valid options of number helpers
-rw-r--r-- | actionview/lib/action_view/helpers/number_helper.rb | 4 | ||||
-rw-r--r-- | activesupport/lib/active_support/number_helper.rb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/actionview/lib/action_view/helpers/number_helper.rb b/actionview/lib/action_view/helpers/number_helper.rb index 7157a95146..879fc7dbf0 100644 --- a/actionview/lib/action_view/helpers/number_helper.rb +++ b/actionview/lib/action_view/helpers/number_helper.rb @@ -272,7 +272,7 @@ module ActionView # <tt>:strip_insignificant_zeros</tt> to +false+ to change # that): # - # number_to_human_size(1234567890123, precision: 5) # => "1.1229 TB" + # number_to_human_size(1234567890123, precision: 5) # => "1.1228 TB" # number_to_human_size(524288000, precision: 5) # => "500 MB" def number_to_human_size(number, options = {}) delegate_number_helper_method(:number_to_human_size, number, options) @@ -346,7 +346,7 @@ module ActionView # Non-significant zeros after the decimal separator are stripped # out by default (set <tt>:strip_insignificant_zeros</tt> to # +false+ to change that): - # number_to_human(12345012345, significant_digits: 6) # => "12.345 Billion" + # number_to_human(12345012345, significant: false) # => "12.345 Billion" # number_to_human(500000000, precision: 5) # => "500 Million" # # ==== Custom Unit Quantifiers diff --git a/activesupport/lib/active_support/number_helper.rb b/activesupport/lib/active_support/number_helper.rb index b169e3af01..7ddc7e505a 100644 --- a/activesupport/lib/active_support/number_helper.rb +++ b/activesupport/lib/active_support/number_helper.rb @@ -236,7 +236,7 @@ module ActiveSupport # Non-significant zeros after the fractional separator are stripped out by # default (set <tt>:strip_insignificant_zeros</tt> to +false+ to change that): # - # number_to_human_size(1234567890123, precision: 5) # => "1.1229 TB" + # number_to_human_size(1234567890123, precision: 5) # => "1.1228 TB" # number_to_human_size(524288000, precision: 5) # => "500 MB" def number_to_human_size(number, options = {}) NumberToHumanSizeConverter.convert(number, options) @@ -309,7 +309,7 @@ module ActiveSupport # out by default (set <tt>:strip_insignificant_zeros</tt> to # +false+ to change that): # - # number_to_human(12345012345, significant_digits: 6) # => "12.345 Billion" + # number_to_human(12345012345, significant: false) # => "12.345 Billion" # number_to_human(500000000, precision: 5) # => "500 Million" # # ==== Custom Unit Quantifiers |