diff options
author | Chris Arcand <chris@chrisarcand.com> | 2018-04-12 12:59:36 -0500 |
---|---|---|
committer | Chris Arcand <chris@chrisarcand.com> | 2018-04-12 12:59:36 -0500 |
commit | 4f04c75352e8534932b7c787f21dc15600a28631 (patch) | |
tree | 82a80c54dce3ac2eeae218ba3d838eb905611668 /activesupport | |
parent | 5b7de1b70156ed0861e494ab9900c6b87c206a67 (diff) | |
download | rails-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')
-rw-r--r-- | activesupport/lib/active_support/core_ext/enumerable.rb | 2 |
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. |