aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzhengjia <jiazheng@live.com>2010-12-17 18:54:57 -0600
committerzhengjia <jiazheng@live.com>2010-12-17 18:54:57 -0600
commitad14926b44596f090c0ef060c1b2c2dde4c71016 (patch)
treea0b0a9ffe58138b83f48066421def521874183c6
parent3145c8afd19dc495930ccc3cdfb0d4b3ac7c370a (diff)
downloadrails-ad14926b44596f090c0ef060c1b2c2dde4c71016.tar.gz
rails-ad14926b44596f090c0ef060c1b2c2dde4c71016.tar.bz2
rails-ad14926b44596f090c0ef060c1b2c2dde4c71016.zip
Fix the example in ActiveSupport::Concern
-rw-r--r--activesupport/lib/active_support/concern.rb2
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