aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-17 07:03:46 -0700
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-17 07:03:46 -0700
commit85ac14309c7b6faf846072fc012e14a0f31694e9 (patch)
tree6b2f02a7aa41ec25f0a230627113e16827b89139 /activesupport/lib
parentad8b0a44fde5f98c9440d1d8cafce578be0b2e1f (diff)
parentb3e1d08a918011f594a89e34084b5dcc8aafe715 (diff)
downloadrails-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.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/core_ext/object/duplicable.rb2
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