From 4f59ebb1a6be7d3f589555e5d943ba3303b4efc0 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Sat, 11 Jul 2009 01:11:28 +0200 Subject: [PATCH] class objects are not duplicable either --- activesupport/lib/active_support/core_ext/object/duplicable.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activesupport/lib/active_support/core_ext/object/duplicable.rb b/activesupport/lib/active_support/core_ext/object/duplicable.rb index 8f49ddfd9e6ed..1722726ca2e62 100644 --- a/activesupport/lib/active_support/core_ext/object/duplicable.rb +++ b/activesupport/lib/active_support/core_ext/object/duplicable.rb @@ -1,6 +1,6 @@ class Object # Can you safely .dup this object? - # False for nil, false, true, symbols, and numbers; true otherwise. + # False for nil, false, true, symbols, numbers, and class objects; true otherwise. def duplicable? true end