diff options
author | zhengjia <jiazheng@live.com> | 2010-12-17 18:54:57 -0600 |
---|---|---|
committer | zhengjia <jiazheng@live.com> | 2010-12-17 18:54:57 -0600 |
commit | ad14926b44596f090c0ef060c1b2c2dde4c71016 (patch) | |
tree | a0b0a9ffe58138b83f48066421def521874183c6 /activesupport | |
parent | 3145c8afd19dc495930ccc3cdfb0d4b3ac7c370a (diff) | |
download | rails-ad14926b44596f090c0ef060c1b2c2dde4c71016.tar.gz rails-ad14926b44596f090c0ef060c1b2c2dde4c71016.tar.bz2 rails-ad14926b44596f090c0ef060c1b2c2dde4c71016.zip |
Fix the example in ActiveSupport::Concern
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/concern.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/concern.rb b/activesupport/lib/active_support/concern.rb index ac94d12e5e..81fb859334 100644 --- a/activesupport/lib/active_support/concern.rb +++ b/activesupport/lib/active_support/concern.rb @@ -3,7 +3,7 @@ module ActiveSupport # # module M # def self.included(base) - # base.extend, ClassMethods + # base.extend ClassMethods # base.send(:include, InstanceMethods) # scope :disabled, where(:disabled => true) # end |