Skip to content

Commit 9dd4b0f

Browse files
Fix parameter description in GetAuthenticatorKeyAsync (#57834)
* Fix parameter description in GetAuthenticatorKeyAsync Corrected the parameter description for the `user` parameter in the `GetAuthenticatorKeyAsync` method of the `IUserAuthenticatorKeyStore<TUser>` interface. The previous description incorrectly referred to the security stamp, while the new description accurately refers to the authenticator key. * Update src/Identity/Extensions.Core/src/IUserAuthenticatorKeyStore.cs Co-authored-by: Martin Costello <[email protected]> --------- Co-authored-by: Martin Costello <[email protected]>
1 parent 7210858 commit 9dd4b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Identity/Extensions.Core/src/IUserAuthenticatorKeyStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public interface IUserAuthenticatorKeyStore<TUser> : IUserStore<TUser> where TUs
2424
/// <summary>
2525
/// Get the authenticator key for the specified <paramref name="user" />.
2626
/// </summary>
27-
/// <param name="user">The user whose security stamp should be set.</param>
27+
/// <param name="user">The user whose authenticator key should be retrieved.</param>
2828
/// <param name="cancellationToken">The <see cref="CancellationToken"/> used to propagate notifications that the operation should be canceled.</param>
2929
/// <returns>The <see cref="Task"/> that represents the asynchronous operation, containing the security stamp for the specified <paramref name="user"/>.</returns>
3030
Task<string?> GetAuthenticatorKeyAsync(TUser user, CancellationToken cancellationToken);

0 commit comments

Comments
 (0)