From 85eb9776bd5b700e0be0cdd23dab280f0d2d946d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Henrique=20Franco?= Date: Mon, 22 Aug 2022 05:43:54 -0300 Subject: [PATCH] crypt: fix typo in comment strign -> string --- backend/crypt/cipher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/crypt/cipher.go b/backend/crypt/cipher.go index 10485776b..ae1e62393 100644 --- a/backend/crypt/cipher.go +++ b/backend/crypt/cipher.go @@ -131,7 +131,7 @@ type fileNameEncoding interface { // - we strip the padding character `=` type caseInsensitiveBase32Encoding struct{} -// EncodeToString encodes a strign using the modified version of +// EncodeToString encodes a string using the modified version of // base32 encoding. func (caseInsensitiveBase32Encoding) EncodeToString(src []byte) string { encoded := base32.HexEncoding.EncodeToString(src)