From 03b3c0c8ce486f4674885e910a8cb31e206943aa Mon Sep 17 00:00:00 2001 From: tsmethurst Date: Tue, 12 Oct 2021 15:34:07 +0200 Subject: [PATCH] make comment clearer --- internal/api/model/user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/api/model/user.go b/internal/api/model/user.go index 089a59467..bc97c91f6 100644 --- a/internal/api/model/user.go +++ b/internal/api/model/user.go @@ -27,7 +27,7 @@ type PasswordChangeRequest struct { // in: formData OldPassword string `form:"old_password" json:"old_password" xml:"old_password"` // Desired new password. - // If the password is not complex enough it will be rejected. + // If the password does not have high enough entropy, it will be rejected. // See https://github.com/wagslane/go-password-validator // // in: formData