Fix typos in comments [ci skip]

This commit is contained in:
blackst0ne 2018-04-08 16:27:27 +11:00
parent eddf3febd7
commit 2ee53feea8
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
module SafeParamsHelper
# Rails 5.0 requires to permit parameters if used in url helpers.
# User this helper when generating links with `params.merge(...)`
# Rails 5.0 requires to permit `params` if they're used in url helpers.
# Use this helper when generating links with `params.merge(...)`
def safe_params
if params.respond_to?(:permit!)
params.except(:host, :port, :protocol).permit!