diff options
author | Anton Davydov <antondavydov.o@gmail.com> | 2016-08-27 14:47:17 +0300 |
---|---|---|
committer | Anton Davydov <antondavydov.o@gmail.com> | 2016-08-27 14:47:17 +0300 |
commit | aa595909bf5ad52ac745b81ebb2b9970791dfa23 (patch) | |
tree | 1eb1928b46d6ea4d8846a15e790a9115f94db9ac /activesupport | |
parent | 187aad6a7ae062f77374dd9770a281f209c67291 (diff) | |
download | rails-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.rb | 2 |
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 |