From 0f3642596f41bb323772fb7d160a3acdf0498650 Mon Sep 17 00:00:00 2001 From: Jonathan Hefner Date: Thu, 10 Feb 2022 12:09:58 -0600 Subject: [PATCH] Insert space before opening parenthesis [ci-skip] Follow-up to #44388. --- guides/source/action_controller_overview.md | 6 +++--- guides/source/security.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index 85238be773..13f11c0921 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -1176,9 +1176,9 @@ config.filter_parameters << :password NOTE: Provided parameters will be filtered out by partial matching regular expression. Rails adds a list of default filters, including `:passw`, -`:secret`, and `:token`, in the appropriate -initializer(`initializers/filter_parameter_logging.rb`), to handle typical -application parameters like `password`, `password_confirmation` and `my_token`. +`:secret`, and `:token`, in the appropriate initializer +(`initializers/filter_parameter_logging.rb`) to handle typical application +parameters like `password`, `password_confirmation` and `my_token`. ### Redirects Filtering diff --git a/guides/source/security.md b/guides/source/security.md index eb0813afc6..c4ffe6036e 100644 --- a/guides/source/security.md +++ b/guides/source/security.md @@ -512,9 +512,9 @@ config.filter_parameters << :password NOTE: Provided parameters will be filtered out by partial matching regular expression. Rails adds a list of default filters, including `:passw`, -`:secret`, and `:token`, in the appropriate -initializer(`initializers/filter_parameter_logging.rb`), to handle typical -application parameters like `password`, `password_confirmation` and `my_token`. +`:secret`, and `:token`, in the appropriate initializer +(`initializers/filter_parameter_logging.rb`) to handle typical application +parameters like `password`, `password_confirmation` and `my_token`. ### Regular Expressions