From 0a6cd99d030439ce7540b6e1565cd71541dab2dc Mon Sep 17 00:00:00 2001 From: Steven Torrence <36111610+storrence88@users.noreply.github.com> Date: Fri, 11 Oct 2019 09:27:46 -0500 Subject: [PATCH] Update README.md Change before filter to before action to match the code example given below. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8be4b44a..ab4dffc7 100644 --- a/README.md +++ b/README.md @@ -289,7 +289,7 @@ There are just three actions in Devise that allow any set of parameters to be pa * `sign_up` (`Devise::RegistrationsController#create`) - Permits authentication keys plus `password` and `password_confirmation` * `account_update` (`Devise::RegistrationsController#update`) - Permits authentication keys plus `password`, `password_confirmation` and `current_password` -In case you want to permit additional parameters (the lazy way™), you can do so using a simple before filter in your `ApplicationController`: +In case you want to permit additional parameters (the lazy way™), you can do so using a simple before action in your `ApplicationController`: ```ruby class ApplicationController < ActionController::Base