aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDaniel Schierbeck <daniel.schierbeck@gmail.com>2011-09-01 15:07:40 +0200
committerDaniel Schierbeck <dasch@zendesk.com>2012-04-12 13:47:52 +0200
commit2310db373ba915e77fdc1dcd780068ad98d242cd (patch)
tree53ff559fa185d68ec89ad54942ef76415980d242 /activesupport
parent1bac04e854b42fc0e47162e251105434d356d2b4 (diff)
downloadrails-2310db373ba915e77fdc1dcd780068ad98d242cd.tar.gz
rails-2310db373ba915e77fdc1dcd780068ad98d242cd.tar.bz2
rails-2310db373ba915e77fdc1dcd780068ad98d242cd.zip
Change API docs regarding delegation to non-public methods
Diffstat (limited to 'activesupport')
-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 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.