aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/class
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-07-27 16:30:56 -0400
committerNeeraj Singh <neerajdotname@gmail.com>2010-07-27 16:30:56 -0400
commite7920a3bde47f1f788fc8d6b8cb00861a78047f8 (patch)
tree310405fc0ecd0e567265e14ee3198070a8a72d10 /activesupport/lib/active_support/core_ext/class
parent865d2084122b224325d334851a7d8670e87b009c (diff)
downloadrails-e7920a3bde47f1f788fc8d6b8cb00861a78047f8.tar.gz
rails-e7920a3bde47f1f788fc8d6b8cb00861a78047f8.tar.bz2
rails-e7920a3bde47f1f788fc8d6b8cb00861a78047f8.zip
clarifying description for class_attribute method
Diffstat (limited to 'activesupport/lib/active_support/core_ext/class')
-rw-r--r--activesupport/lib/active_support/core_ext/class/attribute.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/class/attribute.rb b/activesupport/lib/active_support/core_ext/class/attribute.rb
index 576366e496..83b2695606 100644
--- a/activesupport/lib/active_support/core_ext/class/attribute.rb
+++ b/activesupport/lib/active_support/core_ext/class/attribute.rb
@@ -2,8 +2,8 @@ require 'active_support/core_ext/kernel/singleton_class'
require 'active_support/core_ext/module/remove_method'
class Class
- # Declare a class-level attribute whose value is inheritable and
- # overwritable by subclasses:
+ # Declare a class-level attribute whose value is inheritable by subclasses.
+ # Subclasses can change their own value and it will not impact parent class.
#
# class Base
# class_attribute :setting