aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-01-21 23:52:10 +0100
committerXavier Noria <fxn@hashref.com>2010-01-21 23:52:10 +0100
commit8e4c7aaba8c99c94d37cee7beaa77307928c848e (patch)
tree69b5c4f5ddaa966395a0de8cc5add7e9fdc98ff5 /activesupport/lib/active_support/core_ext/module
parent603112ee5d33408a4cdbfe6ff7dfb99b60bd0c81 (diff)
downloadrails-8e4c7aaba8c99c94d37cee7beaa77307928c848e.tar.gz
rails-8e4c7aaba8c99c94d37cee7beaa77307928c848e.tar.bz2
rails-8e4c7aaba8c99c94d37cee7beaa77307928c848e.zip
removes that beloved typo you only catch in github colored diff
Diffstat (limited to 'activesupport/lib/active_support/core_ext/module')
-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 4be7b9a97c..c751e29908 100644
--- a/activesupport/lib/active_support/core_ext/module/delegation.rb
+++ b/activesupport/lib/active_support/core_ext/module/delegation.rb
@@ -73,7 +73,7 @@ class Module
# invoice.customer_address # => "Vimmersvej 13"
#
# If the delegate object is +nil+ an exception is raised, and that happens
- # no matter whether +nil+ responds to the delegated method). You can get a
+ # no matter whether +nil+ responds to the delegated method. You can get a
# +nil+ instead with the +:allow_nil+ option.
#
# class Foo