From 6ff52a92642352a602214fa392bc532774912b7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20B=C4=85k?= <56700396+53jk1@users.noreply.github.com> Date: Wed, 11 May 2022 15:33:30 +0200 Subject: [PATCH] Fix typo in error comment passoword -> password --- errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/errors.go b/errors.go index 2ef595e..c8da48c 100644 --- a/errors.go +++ b/errors.go @@ -25,7 +25,7 @@ var ( // Have to be at least 24 bits long ErrLocalUfragInsufficientBits = errors.New("local username fragment is less than 24 bits long") - // ErrLocalPwdInsufficientBits indicates local passoword insufficient bits are provided. + // ErrLocalPwdInsufficientBits indicates local password insufficient bits are provided. // Have to be at least 128 bits long ErrLocalPwdInsufficientBits = errors.New("local password is less than 128 bits long")