From b1e4df0c06937f6d172b041d94f5964cd6df584d Mon Sep 17 00:00:00 2001 From: Ansari Date: Wed, 8 Mar 2017 23:12:20 +0530 Subject: [PATCH] Typo Error Fixed. --- src/Microsoft.AspNetCore.Identity/PasswordValidator.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Microsoft.AspNetCore.Identity/PasswordValidator.cs b/src/Microsoft.AspNetCore.Identity/PasswordValidator.cs index f19ed6e2f7..672e09e2f3 100644 --- a/src/Microsoft.AspNetCore.Identity/PasswordValidator.cs +++ b/src/Microsoft.AspNetCore.Identity/PasswordValidator.cs @@ -79,7 +79,7 @@ namespace Microsoft.AspNetCore.Identity } /// - /// Returns a flag indicting whether the supplied character is a digit. + /// Returns a flag indicating whether the supplied character is a digit. /// /// The character to check if it is a digit. /// True if the character is a digit, otherwise false. @@ -89,7 +89,7 @@ namespace Microsoft.AspNetCore.Identity } /// - /// Returns a flag indicting whether the supplied character is a lower case ASCII letter. + /// Returns a flag indicating whether the supplied character is a lower case ASCII letter. /// /// The character to check if it is a lower case ASCII letter. /// True if the character is a lower case ASCII letter, otherwise false. @@ -99,7 +99,7 @@ namespace Microsoft.AspNetCore.Identity } /// - /// Returns a flag indicting whether the supplied character is an upper case ASCII letter. + /// Returns a flag indicating whether the supplied character is an upper case ASCII letter. /// /// The character to check if it is an upper case ASCII letter. /// True if the character is an upper case ASCII letter, otherwise false. @@ -109,7 +109,7 @@ namespace Microsoft.AspNetCore.Identity } /// - /// Returns a flag indicting whether the supplied character is an ASCII letter or digit. + /// Returns a flag indicating whether the supplied character is an ASCII letter or digit. /// /// The character to check if it is an ASCII letter or digit. /// True if the character is an ASCII letter or digit, otherwise false.