Skip to content

Commit

Permalink
Merge pull request #8380 from route/fix-concern-description
Browse files Browse the repository at this point in the history
Fixed description for ActiveSupport::Concern typical case
  • Loading branch information
fxn committed Nov 30, 2012
2 parents db994b7 + 5b50c7d commit d7deec3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion activesupport/lib/active_support/concern.rb
Expand Up @@ -6,7 +6,9 @@ module ActiveSupport
# module M
# def self.included(base)
# base.extend ClassMethods
# scope :disabled, where(:disabled => true)
# base.class_eval do
# scope :disabled, where(:disabled => true)
# end
# end
#
# module ClassMethods
Expand Down

0 comments on commit d7deec3

Please sign in to comment.