aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/number_helper.rb
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-01-04 20:18:56 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-01-04 20:20:52 +0530
commit4b2b595992821688615b4771bf1939b5186815e8 (patch)
treeef97de1a80af5c7d5526fbe82c368253ac9a981d /actionpack/lib/action_view/helpers/number_helper.rb
parent00a27c52eae6f6be89b87bd1d00f2055fc78280a (diff)
downloadrails-4b2b595992821688615b4771bf1939b5186815e8.tar.gz
rails-4b2b595992821688615b4771bf1939b5186815e8.tar.bz2
rails-4b2b595992821688615b4771bf1939b5186815e8.zip
copy edits
Diffstat (limited to 'actionpack/lib/action_view/helpers/number_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/number_helper.rb17
1 files changed, 7 insertions, 10 deletions
diff --git a/actionpack/lib/action_view/helpers/number_helper.rb b/actionpack/lib/action_view/helpers/number_helper.rb
index 6f6ab49268..736e2cd57b 100644
--- a/actionpack/lib/action_view/helpers/number_helper.rb
+++ b/actionpack/lib/action_view/helpers/number_helper.rb
@@ -39,8 +39,7 @@ module ActionView
# * <tt>:extension</tt> - Specifies an extension to add to the end of the
# generated number.
# * <tt>:country_code</tt> - Sets the country code for the phone number.
- # * <tt>:raise</tt> - If +true+ InvalidNumberError is raised when an invalid
- # number is given.
+ # * <tt>:raise</tt> - If true, raises +InvalidNumberError+ when the argument is invalid.
#
# ==== Examples
#
@@ -53,7 +52,7 @@ module ActionView
# number_to_phone(1235551234, :country_code => 1) # => +1-123-555-1234
# number_to_phone("123a456") # => 123a456
#
- # number_to_phone("1234a567", :raise => true) # => raise InvalidNumberError
+ # number_to_phone("1234a567", :raise => true) # => InvalidNumberError
#
# number_to_phone(1235551234, :country_code => 1, :extension => 1343, :delimiter => ".")
# # => +1.123.555.1234 x 1343
@@ -104,8 +103,7 @@ module ActionView
# an hyphen to the formatted number given by <tt>:format</tt>).
# Accepts the same fields than <tt>:format</tt>, except
# <tt>%n</tt> is here the absolute value of the number.
- # * <tt>:raise</tt> - If +true+ InvalidNumberError is raised when an invalid
- # number is given.
+ # * <tt>:raise</tt> - If true, raises +InvalidNumberError+ when the argument is invalid.
#
# ==== Examples
#
@@ -115,7 +113,7 @@ module ActionView
# number_to_currency(1234567890.506, :locale => :fr) # => 1 234 567 890,51 €
# number_to_currency("123a456") # => $123a456
#
- # number_to_currency("123a456", :raise => true) # => raise InvalidNumberError
+ # number_to_currency("123a456", :raise => true) # => InvalidNumberError
#
# number_to_currency(-1234567890.50, :negative_format => "(%u%n)")
# # => ($1,234,567,890.50)
@@ -171,8 +169,7 @@ module ActionView
# * <tt>:delimiter</tt> - Sets the thousands delimiter (defaults to "").
# * <tt>:strip_insignificant_zeros</tt> - If +true+ removes insignificant zeros after the decimal separator
# (defaults to +false+).
- # * <tt>:raise</tt> - If +true+ InvalidNumberError is raised when an invalid
- # number is given.
+ # * <tt>:raise</tt> - If true, raises +InvalidNumberError+ when the argument is invalid.
#
# ==== Examples
#
@@ -184,7 +181,7 @@ module ActionView
# number_to_percentage(1000, :locale => :fr) # => 1 000,000%
# number_to_percentage("98a") # => 98a%
#
- # number_to_percentage("98a", :raise => true) # => raise InvalidNumberError
+ # number_to_percentage("98a", :raise => true) # => InvalidNumberError
def number_to_percentage(number, options = {})
return unless number
@@ -215,7 +212,7 @@ module ActionView
# * <tt>:locale</tt> - Sets the locale to be used for formatting (defaults to current locale).
# * <tt>:delimiter</tt> - Sets the thousands delimiter (defaults to ",").
# * <tt>:separator</tt> - Sets the separator between the fractional and integer digits (defaults to ".").
- # * <tt>:raise</tt> - If +true+ InvalidNumberError is raised when an invalid. number is given.
+ # * <tt>:raise</tt> - If true, raises +InvalidNumberError+ when the argument is invalid.
#
# ==== Examples
#