diff options
author | 2023-07-09 18:25:37 +0200 | |
---|---|---|
committer | 2023-07-09 18:25:37 +0200 | |
commit | 65c89709bc6bf05a369a591d19c612417794f50c (patch) | |
tree | 387594af8e6a5cf4c05868bffa16eba6b8b669e2 /internal/validate/formvalidation.go | |
parent | [docs] Activate the edit feature (#1967) (diff) | |
download | gotosocial-65c89709bc6bf05a369a591d19c612417794f50c.tar.xz |
[chore] Fix password typos (#1966)
Fixes #1963
Diffstat (limited to 'internal/validate/formvalidation.go')
-rw-r--r-- | internal/validate/formvalidation.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/validate/formvalidation.go b/internal/validate/formvalidation.go index c4028ec66..976ffa560 100644 --- a/internal/validate/formvalidation.go +++ b/internal/validate/formvalidation.go @@ -66,7 +66,7 @@ func NewPassword(password string) error { fmt.Sprintf("password is only %d%% strength", percent))) } - return nil // pasword OK + return nil // password OK } // Username makes sure that a given username is valid (ie., letters, numbers, underscores, check length). |