diff options
author | Mikhail Dieterle <MikDiet@gmail.com> | 2013-07-28 17:01:29 +0300 |
---|---|---|
committer | Mikhail Dieterle <MikDiet@gmail.com> | 2013-07-28 17:01:29 +0300 |
commit | f14c94dd1a7020afcadbc078a291278ba8c0574f (patch) | |
tree | 4d7edc5046ec2c7ae5f5351de9184eb55f4cfda3 /guides | |
parent | b1b589cab603c4d96d01e8de938a2a1534643f1e (diff) | |
download | rails-f14c94dd1a7020afcadbc078a291278ba8c0574f.tar.gz rails-f14c94dd1a7020afcadbc078a291278ba8c0574f.tar.bz2 rails-f14c94dd1a7020afcadbc078a291278ba8c0574f.zip |
Typo fix
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_support_core_extensions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md index 421916d448..1915252122 100644 --- a/guides/source/active_support_core_extensions.md +++ b/guides/source/active_support_core_extensions.md @@ -2046,7 +2046,7 @@ BigDecimal.new(5.00, 6).to_s # => "5.0" ### `to_formatted_s` -Te method `to_formatted_s` provides a default specifier of "F". This means that a simple call to `to_formatted_s` or `to_s` will result in floating point representation instead of engineering notation: +The method `to_formatted_s` provides a default specifier of "F". This means that a simple call to `to_formatted_s` or `to_s` will result in floating point representation instead of engineering notation: ```ruby BigDecimal.new(5.00, 6).to_formatted_s # => "5.0" |