Remove excessive periods in comments. (#1162)

This commit is contained in:
Oleg Shevchenko 2017-05-17 05:15:44 +03:00 committed by Hao Kung
parent a664d38ecd
commit 795040a8a1
9 changed files with 13 additions and 13 deletions

View File

@ -872,7 +872,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
}
/// <summary>
/// Retrieves the user associated with the specified login provider and login provider key..
/// Retrieves the user associated with the specified login provider and login provider key.
/// </summary>
/// <param name="loginProvider">The login provider who provided the <paramref name="providerKey"/>.</param>
/// <param name="providerKey">The key provided by the <paramref name="loginProvider"/> to identify a user.</param>
@ -1100,7 +1100,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
}
/// <summary>
/// Retrieves the current failed access count for the specified <paramref name="user"/>..
/// Retrieves the current failed access count for the specified <paramref name="user"/>.
/// </summary>
/// <param name="user">The user whose failed access count should be retrieved.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> used to propagate notifications that the operation should be canceled.</param>
@ -1136,7 +1136,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
}
/// <summary>
/// Set the flag indicating if the specified <paramref name="user"/> can be locked out..
/// Set the flag indicating if the specified <paramref name="user"/> can be locked out.
/// </summary>
/// <param name="user">The user whose ability to be locked out should be set.</param>
/// <param name="enabled">A flag indicating if lock out can be enabled for the specified <paramref name="user"/>.</param>
@ -1211,7 +1211,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
}
/// <summary>
/// Sets a flag indicating if the specified <paramref name="user"/>'s phone number has been confirmed..
/// Sets a flag indicating if the specified <paramref name="user"/>'s phone number has been confirmed.
/// </summary>
/// <param name="user">The user whose telephone number confirmation status should be set.</param>
/// <param name="confirmed">A flag indicating whether the user's telephone number has been confirmed.</param>

View File

@ -35,7 +35,7 @@ namespace Microsoft.AspNetCore.Identity
public string UserIdClaimType { get; set; } = ClaimTypes.NameIdentifier;
/// <summary>
/// Gets or sets the ClaimType used for the security stamp claim..
/// Gets or sets the ClaimType used for the security stamp claim.
/// </summary>
/// <remarks>
/// This defaults to "AspNet.Identity.SecurityStamp".

View File

@ -53,7 +53,7 @@ namespace Microsoft.AspNetCore.Identity
Task ResetAccessFailedCountAsync(TUser user, CancellationToken cancellationToken);
/// <summary>
/// Retrieves the current failed access count for the specified <paramref name="user"/>..
/// Retrieves the current failed access count for the specified <paramref name="user"/>.
/// </summary>
/// <param name="user">The user whose failed access count should be retrieved.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> used to propagate notifications that the operation should be canceled.</param>
@ -71,7 +71,7 @@ namespace Microsoft.AspNetCore.Identity
Task<bool> GetLockoutEnabledAsync(TUser user, CancellationToken cancellationToken);
/// <summary>
/// Set the flag indicating if the specified <paramref name="user"/> can be locked out..
/// Set the flag indicating if the specified <paramref name="user"/> can be locked out.
/// </summary>
/// <param name="user">The user whose ability to be locked out should be set.</param>
/// <param name="enabled">A flag indicating if lock out can be enabled for the specified <paramref name="user"/>.</param>

View File

@ -45,7 +45,7 @@ namespace Microsoft.AspNetCore.Identity
Task<IList<UserLoginInfo>> GetLoginsAsync(TUser user, CancellationToken cancellationToken);
/// <summary>
/// Retrieves the user associated with the specified login provider and login provider key..
/// Retrieves the user associated with the specified login provider and login provider key.
/// </summary>
/// <param name="loginProvider">The login provider who provided the <paramref name="providerKey"/>.</param>
/// <param name="providerKey">The key provided by the <paramref name="loginProvider"/> to identify a user.</param>

View File

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Microsoft.AspNetCore.Identity
{
/// <summary>
/// Provides an abstraction for a store containing users' password hashes..
/// Provides an abstraction for a store containing users' password hashes.
/// </summary>
/// <typeparam name="TUser">The type encapsulating a user.</typeparam>
public interface IUserPasswordStore<TUser> : IUserStore<TUser> where TUser : class

View File

@ -41,7 +41,7 @@ namespace Microsoft.AspNetCore.Identity
Task<bool> GetPhoneNumberConfirmedAsync(TUser user, CancellationToken cancellationToken);
/// <summary>
/// Sets a flag indicating if the specified <paramref name="user"/>'s phone number has been confirmed..
/// Sets a flag indicating if the specified <paramref name="user"/>'s phone number has been confirmed.
/// </summary>
/// <param name="user">The user whose telephone number confirmation status should be set.</param>
/// <param name="confirmed">A flag indicating whether the user's telephone number has been confirmed.</param>

View File

@ -189,7 +189,7 @@ namespace Microsoft.AspNetCore.Identity
/// <summary>
/// Returns an <see cref="IdentityError"/> indicating user lockout is not enabled.
/// </summary>
/// <returns>An <see cref="IdentityError"/> indicating user lockout is not enabled..</returns>
/// <returns>An <see cref="IdentityError"/> indicating user lockout is not enabled.</returns>
public virtual IdentityError UserLockoutNotEnabled()
{
return new IdentityError

View File

@ -4,7 +4,7 @@
namespace Microsoft.AspNetCore.Identity
{
/// <summary>
/// Options for configuring sign in..
/// Options for configuring sign in.
/// </summary>
public class SignInOptions
{

View File

@ -877,7 +877,7 @@ namespace Microsoft.AspNetCore.Identity
}
/// <summary>
/// Retrieves the user associated with the specified external login provider and login provider key..
/// Retrieves the user associated with the specified external login provider and login provider key.
/// </summary>
/// <param name="loginProvider">The login provider who provided the <paramref name="providerKey"/>.</param>
/// <param name="providerKey">The key provided by the <paramref name="loginProvider"/> to identify a user.</param>