aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-04-12 15:23:09 -0400
committerGitHub <noreply@github.com>2018-04-12 15:23:09 -0400
commitf6d3d96dfe6a90935620b2bdc3b31e6a7f124b2a (patch)
tree52aac70ec6bc8fed43bf33046410bcaaddb8fa8c /activesupport
parentb7760eb75a9dd002260a361119aea0b255e1f573 (diff)
parent4f04c75352e8534932b7c787f21dc15600a28631 (diff)
downloadrails-f6d3d96dfe6a90935620b2bdc3b31e6a7f124b2a.tar.gz
rails-f6d3d96dfe6a90935620b2bdc3b31e6a7f124b2a.tar.bz2
rails-f6d3d96dfe6a90935620b2bdc3b31e6a7f124b2a.zip
Merge pull request #32551 from chrisarcand/no-doc-original-sum
Don't doc _original_sum_with_required_identity
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/enumerable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/enumerable.rb b/activesupport/lib/active_support/core_ext/enumerable.rb
index f01d01e6aa..edde4f46b9 100644
--- a/activesupport/lib/active_support/core_ext/enumerable.rb
+++ b/activesupport/lib/active_support/core_ext/enumerable.rb
@@ -6,7 +6,7 @@ module Enumerable
# We can't use Refinements here because Refinements with Module which will be prepended
# doesn't work well https://bugs.ruby-lang.org/issues/13446
- alias :_original_sum_with_required_identity :sum
+ alias :_original_sum_with_required_identity :sum # :nodoc:
private :_original_sum_with_required_identity
# Calculates a sum from the elements.