Fix up doc comment formatting issues

This commit is contained in:
Daniel Roth 2016-02-02 22:19:56 -08:00
parent 4920530fd9
commit bc903bb3cd
1 changed files with 4 additions and 4 deletions

View File

@ -1099,7 +1099,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
}
/// <summary>
/// Sets a flag indicating whether the specified <paramref name="user "/>has two factor authentication enabled or not,
/// Sets a flag indicating whether the specified <paramref name="user"/> has two factor authentication enabled or not,
/// as an asynchronous operation.
/// </summary>
/// <param name="user">The user whose two factor authentication enabled status should be set.</param>
@ -1119,14 +1119,14 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
}
/// <summary>
/// Returns a flag indicating whether the specified <paramref name="user "/>has two factor authentication enabled or not,
/// Returns a flag indicating whether the specified <paramref name="user"/> has two factor authentication enabled or not,
/// as an asynchronous operation.
/// </summary>
/// <param name="user">The user whose two factor authentication enabled status should be set.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> used to propagate notifications that the operation should be canceled.</param>
/// <returns>
/// The <see cref="Task"/> that represents the asynchronous operation, containing a flag indicating whether the specified
/// <paramref name="user "/>has two factor authentication enabled or not.
/// <paramref name="user"/> has two factor authentication enabled or not.
/// </returns>
public virtual Task<bool> GetTwoFactorEnabledAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
{
@ -1196,4 +1196,4 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
return new List<TUser>();
}
}
}
}