From 12da45653e37db5200f7f32cccf61e0f6f457343 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 2 Feb 2016 22:22:56 -0800 Subject: [PATCH] Fixup doc comment formatting issues --- src/Microsoft.AspNetCore.Identity/IUserTwoFactorStore.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Microsoft.AspNetCore.Identity/IUserTwoFactorStore.cs b/src/Microsoft.AspNetCore.Identity/IUserTwoFactorStore.cs index 5c6ae90f8d..614eb5cc5a 100644 --- a/src/Microsoft.AspNetCore.Identity/IUserTwoFactorStore.cs +++ b/src/Microsoft.AspNetCore.Identity/IUserTwoFactorStore.cs @@ -13,7 +13,7 @@ namespace Microsoft.AspNetCore.Identity public interface IUserTwoFactorStore : IUserStore where TUser : class { /// - /// Sets a flag indicating whether the specified has two factor authentication enabled or not, + /// Sets a flag indicating whether the specified has two factor authentication enabled or not, /// as an asynchronous operation. /// /// The user whose two factor authentication enabled status should be set. @@ -23,15 +23,15 @@ namespace Microsoft.AspNetCore.Identity Task SetTwoFactorEnabledAsync(TUser user, bool enabled, CancellationToken cancellationToken); /// - /// Returns a flag indicating whether the specified has two factor authentication enabled or not, + /// Returns a flag indicating whether the specified has two factor authentication enabled or not, /// as an asynchronous operation. /// /// The user whose two factor authentication enabled status should be set. /// The used to propagate notifications that the operation should be canceled. /// /// The that represents the asynchronous operation, containing a flag indicating whether the specified - /// has two factor authentication enabled or not. + /// has two factor authentication enabled or not. /// Task GetTwoFactorEnabledAsync(TUser user, CancellationToken cancellationToken); } -} \ No newline at end of file +}