aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module/delegation.rb
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-07-25 03:05:55 +0000
committerRick Olson <technoweenie@gmail.com>2007-07-25 03:05:55 +0000
commitb49fcde7e50c8eb378e7b1ae08f65c70f6de20e4 (patch)
treebd54d5b6dfdb37e9557263cd70fb11bbe960fee7 /activesupport/lib/active_support/core_ext/module/delegation.rb
parent2d7afe4456551767f2a8f003aeba41329a259179 (diff)
downloadrails-b49fcde7e50c8eb378e7b1ae08f65c70f6de20e4.tar.gz
rails-b49fcde7e50c8eb378e7b1ae08f65c70f6de20e4.tar.bz2
rails-b49fcde7e50c8eb378e7b1ae08f65c70f6de20e4.zip
tiny doc patches [lifo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7236 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/core_ext/module/delegation.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/module/delegation.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/delegation.rb b/activesupport/lib/active_support/core_ext/module/delegation.rb
index b8cf4e0eeb..34e4bf9397 100644
--- a/activesupport/lib/active_support/core_ext/module/delegation.rb
+++ b/activesupport/lib/active_support/core_ext/module/delegation.rb
@@ -20,6 +20,7 @@ class Module
#
# Multiple delegates to the same target are allowed:
# class Foo < ActiveRecord::Base
+ # belongs_to :greeter
# delegate :hello, :goodbye, :to => :greeter
# end
#