diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2019-01-04 11:56:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-04 11:56:02 -0500 |
commit | a86b64918b5c42ffbef2e98a2955be3fe27468de (patch) | |
tree | fdbf8d400550ee01e63a965164d85a43dfae7179 /activesupport | |
parent | 9f0928322fe0c1209e9cfd97020129797b5e635d (diff) | |
parent | 348f8e0c916a24d17847dc84ffd7054612fe95c5 (diff) | |
download | rails-a86b64918b5c42ffbef2e98a2955be3fe27468de.tar.gz rails-a86b64918b5c42ffbef2e98a2955be3fe27468de.tar.bz2 rails-a86b64918b5c42ffbef2e98a2955be3fe27468de.zip |
Merge pull request #34864 from mikegee/patch-1
Clarify benefit of `delegate_missing_to`
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/delegation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/delegation.rb b/activesupport/lib/active_support/core_ext/module/delegation.rb index be90390ae4..a652164973 100644 --- a/activesupport/lib/active_support/core_ext/module/delegation.rb +++ b/activesupport/lib/active_support/core_ext/module/delegation.rb @@ -266,7 +266,7 @@ class Module # end # # def person - # @event.detail.person || @event.creator + # detail.person || creator # end # end # |