Merge pull request #7268 from arunagw/warning-removed-small

Remove warning: `*' interpreted as argument prefix
This commit is contained in:
Rafael Mendonça França 2012-08-05 07:58:08 -07:00
commit daf9f9ffa6
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ module ActiveRecord
"ActiveSupport::Concern + include, which will ensure that your class methods are " \
"inherited."
)
@base.extend *mods
@base.extend(*mods)
end
end
end