From 795040a8a19be9e4530f4729f9bcc8d2d0a2891e Mon Sep 17 00:00:00 2001 From: Oleg Shevchenko Date: Wed, 17 May 2017 05:15:44 +0300 Subject: [PATCH] Remove excessive periods in comments. (#1162) --- .../UserStore.cs | 8 ++++---- .../ClaimsIdentityOptions.cs | 2 +- src/Microsoft.AspNetCore.Identity/IUserLockoutStore.cs | 4 ++-- src/Microsoft.AspNetCore.Identity/IUserLoginStore.cs | 2 +- src/Microsoft.AspNetCore.Identity/IUserPasswordStore.cs | 2 +- .../IUserPhoneNumberStore.cs | 2 +- .../IdentityErrorDescriber.cs | 2 +- src/Microsoft.AspNetCore.Identity/SignInOptions.cs | 2 +- src/Microsoft.AspNetCore.Identity/UserManager.cs | 2 +- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/UserStore.cs b/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/UserStore.cs index d8d1422eb2..5899ab71a1 100644 --- a/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/UserStore.cs +++ b/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/UserStore.cs @@ -872,7 +872,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore } /// - /// 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. /// /// The login provider who provided the . /// The key provided by the to identify a user. @@ -1100,7 +1100,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore } /// - /// Retrieves the current failed access count for the specified .. + /// Retrieves the current failed access count for the specified . /// /// The user whose failed access count should be retrieved. /// The used to propagate notifications that the operation should be canceled. @@ -1136,7 +1136,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore } /// - /// Set the flag indicating if the specified can be locked out.. + /// Set the flag indicating if the specified can be locked out. /// /// The user whose ability to be locked out should be set. /// A flag indicating if lock out can be enabled for the specified . @@ -1211,7 +1211,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore } /// - /// Sets a flag indicating if the specified 's phone number has been confirmed.. + /// Sets a flag indicating if the specified 's phone number has been confirmed. /// /// The user whose telephone number confirmation status should be set. /// A flag indicating whether the user's telephone number has been confirmed. diff --git a/src/Microsoft.AspNetCore.Identity/ClaimsIdentityOptions.cs b/src/Microsoft.AspNetCore.Identity/ClaimsIdentityOptions.cs index 2f05002bf4..9081dc9fab 100644 --- a/src/Microsoft.AspNetCore.Identity/ClaimsIdentityOptions.cs +++ b/src/Microsoft.AspNetCore.Identity/ClaimsIdentityOptions.cs @@ -35,7 +35,7 @@ namespace Microsoft.AspNetCore.Identity public string UserIdClaimType { get; set; } = ClaimTypes.NameIdentifier; /// - /// Gets or sets the ClaimType used for the security stamp claim.. + /// Gets or sets the ClaimType used for the security stamp claim. /// /// /// This defaults to "AspNet.Identity.SecurityStamp". diff --git a/src/Microsoft.AspNetCore.Identity/IUserLockoutStore.cs b/src/Microsoft.AspNetCore.Identity/IUserLockoutStore.cs index 2166e258bf..c48df74642 100644 --- a/src/Microsoft.AspNetCore.Identity/IUserLockoutStore.cs +++ b/src/Microsoft.AspNetCore.Identity/IUserLockoutStore.cs @@ -53,7 +53,7 @@ namespace Microsoft.AspNetCore.Identity Task ResetAccessFailedCountAsync(TUser user, CancellationToken cancellationToken); /// - /// Retrieves the current failed access count for the specified .. + /// Retrieves the current failed access count for the specified . /// /// The user whose failed access count should be retrieved. /// The used to propagate notifications that the operation should be canceled. @@ -71,7 +71,7 @@ namespace Microsoft.AspNetCore.Identity Task GetLockoutEnabledAsync(TUser user, CancellationToken cancellationToken); /// - /// Set the flag indicating if the specified can be locked out.. + /// Set the flag indicating if the specified can be locked out. /// /// The user whose ability to be locked out should be set. /// A flag indicating if lock out can be enabled for the specified . diff --git a/src/Microsoft.AspNetCore.Identity/IUserLoginStore.cs b/src/Microsoft.AspNetCore.Identity/IUserLoginStore.cs index 69b057be34..519ba09274 100644 --- a/src/Microsoft.AspNetCore.Identity/IUserLoginStore.cs +++ b/src/Microsoft.AspNetCore.Identity/IUserLoginStore.cs @@ -45,7 +45,7 @@ namespace Microsoft.AspNetCore.Identity Task> GetLoginsAsync(TUser user, CancellationToken cancellationToken); /// - /// 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. /// /// The login provider who provided the . /// The key provided by the to identify a user. diff --git a/src/Microsoft.AspNetCore.Identity/IUserPasswordStore.cs b/src/Microsoft.AspNetCore.Identity/IUserPasswordStore.cs index 8893c9eb7d..639451a121 100644 --- a/src/Microsoft.AspNetCore.Identity/IUserPasswordStore.cs +++ b/src/Microsoft.AspNetCore.Identity/IUserPasswordStore.cs @@ -7,7 +7,7 @@ using System.Threading.Tasks; namespace Microsoft.AspNetCore.Identity { /// - /// Provides an abstraction for a store containing users' password hashes.. + /// Provides an abstraction for a store containing users' password hashes. /// /// The type encapsulating a user. public interface IUserPasswordStore : IUserStore where TUser : class diff --git a/src/Microsoft.AspNetCore.Identity/IUserPhoneNumberStore.cs b/src/Microsoft.AspNetCore.Identity/IUserPhoneNumberStore.cs index 3bed8b41c0..e82d37549b 100644 --- a/src/Microsoft.AspNetCore.Identity/IUserPhoneNumberStore.cs +++ b/src/Microsoft.AspNetCore.Identity/IUserPhoneNumberStore.cs @@ -41,7 +41,7 @@ namespace Microsoft.AspNetCore.Identity Task GetPhoneNumberConfirmedAsync(TUser user, CancellationToken cancellationToken); /// - /// Sets a flag indicating if the specified 's phone number has been confirmed.. + /// Sets a flag indicating if the specified 's phone number has been confirmed. /// /// The user whose telephone number confirmation status should be set. /// A flag indicating whether the user's telephone number has been confirmed. diff --git a/src/Microsoft.AspNetCore.Identity/IdentityErrorDescriber.cs b/src/Microsoft.AspNetCore.Identity/IdentityErrorDescriber.cs index 3d779dbbd1..dd6ca26b6d 100644 --- a/src/Microsoft.AspNetCore.Identity/IdentityErrorDescriber.cs +++ b/src/Microsoft.AspNetCore.Identity/IdentityErrorDescriber.cs @@ -189,7 +189,7 @@ namespace Microsoft.AspNetCore.Identity /// /// Returns an indicating user lockout is not enabled. /// - /// An indicating user lockout is not enabled.. + /// An indicating user lockout is not enabled. public virtual IdentityError UserLockoutNotEnabled() { return new IdentityError diff --git a/src/Microsoft.AspNetCore.Identity/SignInOptions.cs b/src/Microsoft.AspNetCore.Identity/SignInOptions.cs index 370224f2d6..ac8ddc0571 100644 --- a/src/Microsoft.AspNetCore.Identity/SignInOptions.cs +++ b/src/Microsoft.AspNetCore.Identity/SignInOptions.cs @@ -4,7 +4,7 @@ namespace Microsoft.AspNetCore.Identity { /// - /// Options for configuring sign in.. + /// Options for configuring sign in. /// public class SignInOptions { diff --git a/src/Microsoft.AspNetCore.Identity/UserManager.cs b/src/Microsoft.AspNetCore.Identity/UserManager.cs index 985e8dc85d..589a1dcfe9 100644 --- a/src/Microsoft.AspNetCore.Identity/UserManager.cs +++ b/src/Microsoft.AspNetCore.Identity/UserManager.cs @@ -877,7 +877,7 @@ namespace Microsoft.AspNetCore.Identity } /// - /// 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. /// /// The login provider who provided the . /// The key provided by the to identify a user.