mod/usr: fix typo [skip ci]
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
leo 2023-05-03 22:43:51 +02:00
parent 4f2302143d
commit 0ac668d001
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ

@ -17,7 +17,7 @@ func CreateUser(ctx context.Context, client *ent.Client, email, username, passwo
digest, err := passwd.GetHash(password)
if err != nil {
log.Errorf("error hashing passoword: %s", err)
log.Errorf("error hashing password: %s", err)
return nil, errors.New("could not hash password")
}