diff options
author | Rick Olson <technoweenie@gmail.com> | 2007-07-25 03:05:55 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2007-07-25 03:05:55 +0000 |
commit | b49fcde7e50c8eb378e7b1ae08f65c70f6de20e4 (patch) | |
tree | bd54d5b6dfdb37e9557263cd70fb11bbe960fee7 /activesupport | |
parent | 2d7afe4456551767f2a8f003aeba41329a259179 (diff) | |
download | rails-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')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/delegation.rb | 1 |
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 # |