From 07dad8972160046d308e7b051beb6f3bc34b2761 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Wed, 27 Feb 2019 15:02:20 -0800 Subject: [PATCH] Clarify ExternalLoginInfo displayName doc comment (#7833) --- src/Identity/Core/src/ExternalLoginInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Identity/Core/src/ExternalLoginInfo.cs b/src/Identity/Core/src/ExternalLoginInfo.cs index e7305324f9..5fcca2c6a7 100644 --- a/src/Identity/Core/src/ExternalLoginInfo.cs +++ b/src/Identity/Core/src/ExternalLoginInfo.cs @@ -18,7 +18,7 @@ namespace Microsoft.AspNetCore.Identity /// The to associate with this login. /// The provider associated with this login information. /// The unique identifier for this user provided by the login provider. - /// The display name for this user provided by the login provider. + /// The display name for the login provider. public ExternalLoginInfo(ClaimsPrincipal principal, string loginProvider, string providerKey, string displayName) : base(loginProvider, providerKey, displayName) { @@ -36,4 +36,4 @@ namespace Microsoft.AspNetCore.Identity /// public IEnumerable AuthenticationTokens { get; set; } } -} \ No newline at end of file +}