diff options
author | Mark McSpadden <markmcspadden@gmail.com> | 2012-05-17 09:22:36 -0400 |
---|---|---|
committer | Mark McSpadden <markmcspadden@gmail.com> | 2012-05-17 09:45:18 -0400 |
commit | b3e1d08a918011f594a89e34084b5dcc8aafe715 (patch) | |
tree | 6b2f02a7aa41ec25f0a230627113e16827b89139 /activesupport | |
parent | ad8b0a44fde5f98c9440d1d8cafce578be0b2e1f (diff) | |
download | rails-b3e1d08a918011f594a89e34084b5dcc8aafe715.tar.gz rails-b3e1d08a918011f594a89e34084b5dcc8aafe715.tar.bz2 rails-b3e1d08a918011f594a89e34084b5dcc8aafe715.zip |
Fix documentation around duplicable regarding Class and Module.
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/object/duplicable.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/duplicable.rb b/activesupport/lib/active_support/core_ext/object/duplicable.rb index dd63b64c77..f1b755c2c4 100644 --- a/activesupport/lib/active_support/core_ext/object/duplicable.rb +++ b/activesupport/lib/active_support/core_ext/object/duplicable.rb @@ -19,7 +19,7 @@ class Object # Can you safely dup this object? # - # False for +nil+, +false+, +true+, symbols, numbers, class and module objects; + # False for +nil+, +false+, +true+, symbol, and number objects; # true otherwise. def duplicable? true |