Trim typo.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4330 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2006-05-08 18:10:40 +00:00
parent befd62c2fc
commit d249ff579a

View File

@@ -18,7 +18,7 @@ class Module
# Foo.new.hello # => "hello"
# Foo.new.goodbye # => NoMethodError: undefined method `goodbye' for #<Foo:0x1af30c>
#
# With multiple delegates to the same target are allowed:
# Multiple delegates to the same target are allowed:
# class Foo < ActiveRecord::Base
# delegate :hello, :goodbye, :to => :greeter
# end