1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix another AS::Concern example (class_eval is already called by included)

This commit is contained in:
maximerety 2012-11-15 19:17:53 +01:00
parent d0ba816fcf
commit 2ff888181d

View file

@ -79,10 +79,8 @@ module ActiveSupport
# module Foo
# extend ActiveSupport::Concern
# included do
# class_eval do
# def self.method_injected_by_foo
# ...
# end
# def self.method_injected_by_foo
# ...
# end
# end
# end