diff options
| -rw-r--r-- | activesupport/lib/active_support/number_helper/number_to_currency_converter.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb b/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb index cd5a2b3cbb..7986eb50f0 100644 --- a/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb +++ b/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb @@ -23,7 +23,7 @@ module ActiveSupport          end          def absolute_value(number) -          number.respond_to?("abs") ? number.abs : number.sub(/\A-/, '') +          number.respond_to?(:abs) ? number.abs : number.sub(/\A-/, '')          end          def options | 
