aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module/delegation.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-01-05 05:29:41 +0900
committerGitHub <noreply@github.com>2019-01-05 05:29:41 +0900
commit15383eea3627bcb485661bdb7c5d89597a1897b0 (patch)
tree9f13a53f2c307f1aaeee65e7d2d81feabf474a16 /activesupport/lib/active_support/core_ext/module/delegation.rb
parent663f6cc14fd01650546ed508efb3f7ad8e30135c (diff)
parentee79a842ff0ca26380ba0f18e1e91cca28c7f07b (diff)
downloadrails-15383eea3627bcb485661bdb7c5d89597a1897b0.tar.gz
rails-15383eea3627bcb485661bdb7c5d89597a1897b0.tar.bz2
rails-15383eea3627bcb485661bdb7c5d89597a1897b0.zip
Merge pull request #34871 from bogdanvlviv/clarify-delegate_missing_to
Clarify `delegate_missing_to` [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/core_ext/module/delegation.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/module/delegation.rb2
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 a652164973..5652f2d1cc 100644
--- a/activesupport/lib/active_support/core_ext/module/delegation.rb
+++ b/activesupport/lib/active_support/core_ext/module/delegation.rb
@@ -243,7 +243,7 @@ class Module
# end
#
# def person
- # @event.detail.person || @event.creator
+ # detail.person || creator
# end
#
# private