diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-17 07:03:46 -0700 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-17 07:03:46 -0700 |
commit | 85ac14309c7b6faf846072fc012e14a0f31694e9 (patch) | |
tree | 6b2f02a7aa41ec25f0a230627113e16827b89139 | |
parent | ad8b0a44fde5f98c9440d1d8cafce578be0b2e1f (diff) | |
parent | b3e1d08a918011f594a89e34084b5dcc8aafe715 (diff) | |
download | rails-85ac14309c7b6faf846072fc012e14a0f31694e9.tar.gz rails-85ac14309c7b6faf846072fc012e14a0f31694e9.tar.bz2 rails-85ac14309c7b6faf846072fc012e14a0f31694e9.zip |
Merge pull request #6363 from markmcspadden/fix_duplicable_documentation
Fix documentation around duplicable regarding Class and Module.
-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 |