From 6a31f73984097c2814e1f0409b23c665d4cf2e31 Mon Sep 17 00:00:00 2001 From: Zarickan Date: Mon, 13 Nov 2017 17:39:38 +0100 Subject: [PATCH] Corrected typo in IUserTwoFactorTokenProvider.cs - Corrected typo: "heck" should be "check" --- .../IUserTwoFactorTokenProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.Extensions.Identity.Core/IUserTwoFactorTokenProvider.cs b/src/Microsoft.Extensions.Identity.Core/IUserTwoFactorTokenProvider.cs index 39b7f43da6..5c9f7d82d6 100644 --- a/src/Microsoft.Extensions.Identity.Core/IUserTwoFactorTokenProvider.cs +++ b/src/Microsoft.Extensions.Identity.Core/IUserTwoFactorTokenProvider.cs @@ -24,7 +24,7 @@ namespace Microsoft.AspNetCore.Identity /// /// The parameter allows a token generator to be used for multiple types of token whilst /// insuring a token for one purpose cannot be used for another. For example if you specified a purpose of "Email" - /// and validated it with the same purpose a token with the purpose of TOTP would not pass the heck even if it was + /// and validated it with the same purpose a token with the purpose of TOTP would not pass the check even if it was /// for the same user. /// /// Implementations of should validate that purpose is not null or empty to @@ -60,4 +60,4 @@ namespace Microsoft.AspNetCore.Identity /// Task CanGenerateTwoFactorTokenAsync(UserManager manager, TUser user); } -} \ No newline at end of file +}