Skip to content

Commit

Permalink
Fix minor typo from #20038
Browse files Browse the repository at this point in the history
We use one period after spaces, not two.
  • Loading branch information
sgrif committed Oct 20, 2015
1 parent 3570cc0 commit cd46bfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/source/active_support_core_extensions.md
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit cd46bfc

Please sign in to comment.