aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_support_core_extensions.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-08-26 20:44:09 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-08-27 22:29:56 +0900
commit4b3ee155f916a60da34c4f3df72b83adc891779e (patch)
tree7e7722b31b0ef7eea6de1cc1fa6b875f3f0abaf9 /guides/source/active_support_core_extensions.md
parent9fd6ccea03f97e9fe4d9ca48f0b90d7be3bc9d3b (diff)
downloadrails-4b3ee155f916a60da34c4f3df72b83adc891779e.tar.gz
rails-4b3ee155f916a60da34c4f3df72b83adc891779e.tar.bz2
rails-4b3ee155f916a60da34c4f3df72b83adc891779e.zip
Remove trailing spaces [ci skip]
Diffstat (limited to 'guides/source/active_support_core_extensions.md')
-rw-r--r--guides/source/active_support_core_extensions.md4
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 20d09e65b3..9f89e666dc 100644
--- a/guides/source/active_support_core_extensions.md
+++ b/guides/source/active_support_core_extensions.md
@@ -135,9 +135,9 @@ NOTE: Defined in `active_support/core_ext/object/blank.rb`.
### `duplicable?`
-In Ruby 2.4 most objects can be duplicated via `dup` or `clone` except
+In Ruby 2.4 most objects can be duplicated via `dup` or `clone` except
methods and certain numbers. Though Ruby 2.2 and 2.3 can't duplicate `nil`,
-`false`, `true`, and symbols as well as instances `Float`, `Fixnum`,
+`false`, `true`, and symbols as well as instances `Float`, `Fixnum`,
and `Bignum` instances.
```ruby