aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-03-31 09:45:44 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-03-31 09:52:02 +0900
commit51ab5cb0432c483422112ebbb274855a3fa5ecc8 (patch)
treeea293cfbd53106e08b36501536fefdb185fc31d0 /activesupport
parentaae8fd0e07a9e924838845c1b29960f598fc14f3 (diff)
downloadrails-51ab5cb0432c483422112ebbb274855a3fa5ecc8.tar.gz
rails-51ab5cb0432c483422112ebbb274855a3fa5ecc8.tar.bz2
rails-51ab5cb0432c483422112ebbb274855a3fa5ecc8.zip
Follow up tweaks b89a3e7e638a50c648a17d09c48b49b707e1d90d [ci skip]
* use backticks instead of `+` * and more (e.g. missed replacing `Array#excluding` and `Enumerable#excluding` in b89a3e7e638a50c648a17d09c48b49b707e1d90d)
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 6eb0af69bf..db9c7e96f3 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -61,7 +61,7 @@
*Kaan Ozkan*, *Sharang Dashputre*
-* Allow Array#excluding and Enumerable#excluding to deal with a passed array gracefully.
+* Allow `Array#excluding` and `Enumerable#excluding` to deal with a passed array gracefully.
[ 1, 2, 3, 4, 5 ].excluding([4, 5]) # => [ 1, 2, 3 ]