aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
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 /actionpack
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 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 9931a0de81..79f6320a04 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -43,7 +43,7 @@
*Rafael Mendonça França*
-* Introduce ActionDispatch::HostAuthorization
+* Introduce `ActionDispatch::HostAuthorization`.
This is a new middleware that guards against DNS rebinding attacks by
explicitly permitting the hosts a request can be made to.
@@ -73,7 +73,7 @@
* Raise an error on root route naming conflicts.
- Raises an ArgumentError when multiple root routes are defined in the
+ Raises an `ArgumentError` when multiple root routes are defined in the
same context instead of assigning nil names to subsequent roots.
*Gannon McGibbon*