aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorMikhail Dieterle <MikDiet@gmail.com>2013-07-28 17:01:29 +0300
committerMikhail Dieterle <MikDiet@gmail.com>2013-07-28 17:01:29 +0300
commitf14c94dd1a7020afcadbc078a291278ba8c0574f (patch)
tree4d7edc5046ec2c7ae5f5351de9184eb55f4cfda3 /guides/source
parentb1b589cab603c4d96d01e8de938a2a1534643f1e (diff)
downloadrails-f14c94dd1a7020afcadbc078a291278ba8c0574f.tar.gz
rails-f14c94dd1a7020afcadbc078a291278ba8c0574f.tar.bz2
rails-f14c94dd1a7020afcadbc078a291278ba8c0574f.zip
Typo fix
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/active_support_core_extensions.md2
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"