diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2014-02-26 21:45:54 -0300 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2014-02-26 21:45:54 -0300 |
commit | 34c74f8e91e7cd61e2666a02b62c1495b6fdaf5f (patch) | |
tree | 9fcacbe3839550c84bbf611f1c4933d3403dd1ad /activesupport | |
parent | 088c11658aa6b79d05e9014201d585c7700669aa (diff) | |
download | rails-34c74f8e91e7cd61e2666a02b62c1495b6fdaf5f.tar.gz rails-34c74f8e91e7cd61e2666a02b62c1495b6fdaf5f.tar.bz2 rails-34c74f8e91e7cd61e2666a02b62c1495b6fdaf5f.zip |
Fix concerning module reference [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/kernel/concern.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/kernel/concern.rb b/activesupport/lib/active_support/core_ext/kernel/concern.rb index c200a78d36..bf72caa058 100644 --- a/activesupport/lib/active_support/core_ext/kernel/concern.rb +++ b/activesupport/lib/active_support/core_ext/kernel/concern.rb @@ -3,7 +3,7 @@ require 'active_support/core_ext/module/concerning' module Kernel # A shortcut to define a toplevel concern, not within a module. # - # See ActiveSupport::CoreExt::Module::Concerning for more. + # See Module::Concerning for more. def concern(topic, &module_definition) Object.concern topic, &module_definition end |