aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-08-27 17:21:36 +0530
committerGitHub <noreply@github.com>2016-08-27 17:21:36 +0530
commita63de6db433dffb610509a65aed02991aa718c32 (patch)
tree1eb1928b46d6ea4d8846a15e790a9115f94db9ac
parent187aad6a7ae062f77374dd9770a281f209c67291 (diff)
parentaa595909bf5ad52ac745b81ebb2b9970791dfa23 (diff)
downloadrails-a63de6db433dffb610509a65aed02991aa718c32.tar.gz
rails-a63de6db433dffb610509a65aed02991aa718c32.tar.bz2
rails-a63de6db433dffb610509a65aed02991aa718c32.zip
Merge pull request #26299 from davydovanton/fix-typo
Fix typo in Delegation#delegate_missing_to doc [ci skip]
-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