From 1deea8aa3af8a7d59162da59844191f4f9eb468b Mon Sep 17 00:00:00 2001 From: Todd Knight Date: Mon, 17 Aug 2020 10:07:56 -0700 Subject: [PATCH] Fixing missed documentation fix from PR 267. --- internal/auth/password/repository_password.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/auth/password/repository_password.go b/internal/auth/password/repository_password.go index 93434d9d53..649b401d30 100644 --- a/internal/auth/password/repository_password.go +++ b/internal/auth/password/repository_password.go @@ -84,7 +84,7 @@ func (r *Repository) Authenticate(ctx context.Context, authMethodId string, logi } // ChangePassword updates the password for accountId to new if old equals -// the stored password. The account for the loginName is returned with a +// the stored password. The account for the accountId is returned with a // new CredentialId if password is successfully changed. // // Returns nil if old does not match the stored password for accountId.