aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorChris Arcand <chris@chrisarcand.com>2018-04-12 12:59:36 -0500
committerChris Arcand <chris@chrisarcand.com>2018-04-12 12:59:36 -0500
commit4f04c75352e8534932b7c787f21dc15600a28631 (patch)
tree82a80c54dce3ac2eeae218ba3d838eb905611668 /activesupport/lib
parent5b7de1b70156ed0861e494ab9900c6b87c206a67 (diff)
downloadrails-4f04c75352e8534932b7c787f21dc15600a28631.tar.gz
rails-4f04c75352e8534932b7c787f21dc15600a28631.tar.bz2
rails-4f04c75352e8534932b7c787f21dc15600a28631.zip
Don't doc _original_sum_with_required_identity
It's not public API so don't document it.
Diffstat (limited to 'activesupport/lib')
-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.