aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2016-04-19 00:55:44 -0700
committerJeremy Daer <jeremydaer@gmail.com>2016-04-19 00:55:44 -0700
commit92d7a4e34a941245d07da120dc7d71e33e127635 (patch)
treef8ee2c1bf1f140a7530f73777cf3d875dff79b03 /activesupport
parent1f190c4873963598eea306a99b56c4a24cb817d0 (diff)
downloadrails-92d7a4e34a941245d07da120dc7d71e33e127635.tar.gz
rails-92d7a4e34a941245d07da120dc7d71e33e127635.tar.bz2
rails-92d7a4e34a941245d07da120dc7d71e33e127635.zip
Ruby 2.4 Array#sum: ficauses -> cases changelog typo [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 58ec6fb4fe..21dd0657aa 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -15,7 +15,7 @@
# => 'ab'
We tried shimming the fast path and falling back to the compatible path
- if it fails, but that ends up slower even in simple causes due to the cost
+ if it fails, but that ends up slower even in simple cases due to the cost
of exception handling. Our only choice is to override the native `Array#sum`
with our `Enumerable#sum`.