From a1bd34e9c04c79488dc20ad0af08b0c94bffe675 Mon Sep 17 00:00:00 2001 From: Grzegorz Bizon Date: Tue, 4 Dec 2018 14:32:03 +0100 Subject: [PATCH] Fix typo in encrypted token authenticatable strategy --- .../concerns/token_authenticatable_strategies/encrypted.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/concerns/token_authenticatable_strategies/encrypted.rb b/app/models/concerns/token_authenticatable_strategies/encrypted.rb index 86f7f52f42c..152491aa6e9 100644 --- a/app/models/concerns/token_authenticatable_strategies/encrypted.rb +++ b/app/models/concerns/token_authenticatable_strategies/encrypted.rb @@ -6,7 +6,7 @@ module TokenAuthenticatableStrategies super if migrating? && fallback? - raise ArgumentError, '`fallback` and `migration` options are not compatible!' + raise ArgumentError, '`fallback` and `migrating` options are not compatible!' end end -- GitLab