diff options
author | Jon Moss <me@jonathanmoss.me> | 2017-04-20 18:40:26 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2017-04-20 18:40:26 -0400 |
commit | 32431b37704c0aaec06ae1a23e0d6091d6542fd2 (patch) | |
tree | e3373a8088483c12a4173873d8929b4d2bc610f2 /activesupport/lib/active_support | |
parent | 972df059bbedfe60d29caa8a561f5aff76883e63 (diff) | |
download | rails-32431b37704c0aaec06ae1a23e0d6091d6542fd2.tar.gz rails-32431b37704c0aaec06ae1a23e0d6091d6542fd2.tar.bz2 rails-32431b37704c0aaec06ae1a23e0d6091d6542fd2.zip |
Add comma
[ci skip]
Diffstat (limited to 'activesupport/lib/active_support')
-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 4f120d4b45..3a4ae6cb8b 100644 --- a/activesupport/lib/active_support/core_ext/enumerable.rb +++ b/activesupport/lib/active_support/core_ext/enumerable.rb @@ -1,5 +1,5 @@ module Enumerable - # Enumerable#sum was added in Ruby 2.4 but it only works with Numeric elements + # Enumerable#sum was added in Ruby 2.4, but it only works with Numeric elements # when we omit an identity. # # We tried shimming it to attempt the fast native method, rescue TypeError, |