aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorAnton Davydov <antondavydov.o@gmail.com>2016-08-27 14:47:17 +0300
committerAnton Davydov <antondavydov.o@gmail.com>2016-08-27 14:47:17 +0300
commitaa595909bf5ad52ac745b81ebb2b9970791dfa23 (patch)
tree1eb1928b46d6ea4d8846a15e790a9115f94db9ac /activesupport
parent187aad6a7ae062f77374dd9770a281f209c67291 (diff)
downloadrails-aa595909bf5ad52ac745b81ebb2b9970791dfa23.tar.gz
rails-aa595909bf5ad52ac745b81ebb2b9970791dfa23.tar.bz2
rails-aa595909bf5ad52ac745b81ebb2b9970791dfa23.zip
Fix typo in Delegation#delegate_missing_to doc [skip ci]
Diffstat (limited to 'activesupport')
-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 f01ff23bcf..f5f4ba61b7 100644
--- a/activesupport/lib/active_support/core_ext/module/delegation.rb
+++ b/activesupport/lib/active_support/core_ext/module/delegation.rb
@@ -256,7 +256,7 @@ class Module
# end
# end
#
- # The target can be anything callable withing the object. E.g. instance
+ # The target can be anything callable within the object. E.g. instance
# variables, methods, constants ant the likes.
def delegate_missing_to(target)
target = target.to_s