diff options
author | Neeraj Singh <neerajdotname@gmail.com> | 2010-07-27 16:30:56 -0400 |
---|---|---|
committer | Neeraj Singh <neerajdotname@gmail.com> | 2010-07-27 16:30:56 -0400 |
commit | e7920a3bde47f1f788fc8d6b8cb00861a78047f8 (patch) | |
tree | 310405fc0ecd0e567265e14ee3198070a8a72d10 /activesupport/lib | |
parent | 865d2084122b224325d334851a7d8670e87b009c (diff) | |
download | rails-e7920a3bde47f1f788fc8d6b8cb00861a78047f8.tar.gz rails-e7920a3bde47f1f788fc8d6b8cb00861a78047f8.tar.bz2 rails-e7920a3bde47f1f788fc8d6b8cb00861a78047f8.zip |
clarifying description for class_attribute method
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/class/attribute.rb | 4 |
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 |