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") }