From 0ac668d001f599716c215ed934a7d197a1a47df5 Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 3 May 2023 22:43:51 +0200 Subject: [PATCH] mod/usr: fix typo [skip ci] --- modules/user/user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/user/user.go b/modules/user/user.go index c6a77f1..24472d4 100644 --- a/modules/user/user.go +++ b/modules/user/user.go @@ -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") }