diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-20 16:41:26 -0600 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-20 16:41:26 -0600 |
commit | cd46bfc54fb34f0b4ed89e00d2efbe8a0273ab0b (patch) | |
tree | 61b08d1206f86120241f279544b3c10c520a7e96 /guides/source | |
parent | 3570cc0a278d3f1457984db2624a2e0ac048521b (diff) | |
download | rails-cd46bfc54fb34f0b4ed89e00d2efbe8a0273ab0b.tar.gz rails-cd46bfc54fb34f0b4ed89e00d2efbe8a0273ab0b.tar.bz2 rails-cd46bfc54fb34f0b4ed89e00d2efbe8a0273ab0b.zip |
Fix minor typo from #20038
We use one period after spaces, not two.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_support_core_extensions.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md index 0799683a94..556b5ede3c 100644 --- a/guides/source/active_support_core_extensions.md +++ b/guides/source/active_support_core_extensions.md @@ -453,7 +453,7 @@ NOTE: Defined in `active_support/core_ext/object/instance_variables.rb`. #### `instance_variable_names` -The method `instance_variable_names` returns an array. Each name includes the "@" sign. +The method `instance_variable_names` returns an array. Each name includes the "@" sign. ```ruby class C @@ -2073,7 +2073,7 @@ Extensions to `BigDecimal` -------------------------- ### `to_s` -The method `to_s` provides a default specifier of "F". This means that a simple call to `to_s` will result in floating point representation instead of engineering notation: +The method `to_s` provides a default specifier of "F". This means that a simple call to `to_s` will result in floating point representation instead of engineering notation: ```ruby BigDecimal.new(5.00, 6).to_s # => "5.0" |