aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module/delegation.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-05-08 18:10:40 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-05-08 18:10:40 +0000
commitd249ff579a1a4bcdf0bc1491771934b7478f5778 (patch)
tree321d720b0accddd4ce773c85dc040590d7ddd547 /activesupport/lib/active_support/core_ext/module/delegation.rb
parentbefd62c2fc04356980c4de493ffdee40e7a36c87 (diff)
downloadrails-d249ff579a1a4bcdf0bc1491771934b7478f5778.tar.gz
rails-d249ff579a1a4bcdf0bc1491771934b7478f5778.tar.bz2
rails-d249ff579a1a4bcdf0bc1491771934b7478f5778.zip
Trim typo.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4330 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.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 8a44bd9ba5..b8cf4e0eeb 100644
--- a/activesupport/lib/active_support/core_ext/module/delegation.rb
+++ b/activesupport/lib/active_support/core_ext/module/delegation.rb
@@ -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