diff options
author | Daniel Schierbeck <daniel.schierbeck@gmail.com> | 2011-09-01 15:07:40 +0200 |
---|---|---|
committer | Daniel Schierbeck <dasch@zendesk.com> | 2012-04-12 13:47:52 +0200 |
commit | 2310db373ba915e77fdc1dcd780068ad98d242cd (patch) | |
tree | 53ff559fa185d68ec89ad54942ef76415980d242 | |
parent | 1bac04e854b42fc0e47162e251105434d356d2b4 (diff) | |
download | rails-2310db373ba915e77fdc1dcd780068ad98d242cd.tar.gz rails-2310db373ba915e77fdc1dcd780068ad98d242cd.tar.bz2 rails-2310db373ba915e77fdc1dcd780068ad98d242cd.zip |
Change API docs regarding delegation to non-public methods
-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 0ea58d4224..ee8adae1cb 100644 --- a/activesupport/lib/active_support/core_ext/module/delegation.rb +++ b/activesupport/lib/active_support/core_ext/module/delegation.rb @@ -1,5 +1,5 @@ class Module - # Provides a delegate class method to easily expose contained objects' methods + # Provides a delegate class method to easily expose contained objects' public methods # as your own. Pass one or more methods (specified as symbols or strings) # and the name of the target object via the <tt>:to</tt> option (also a symbol # or string). At least one method and the <tt>:to</tt> option are required. |