cleanup: fix typos across multiple files

Does not affect code.

Updates #cleanup

Signed-off-by: Naasir <yoursdeveloper@protonmail.com>
This commit is contained in:
Naasir
2025-12-02 13:19:47 +05:30
committed by Brad Fitzpatrick
parent ece6e27f39
commit 77dcdc223e
5 changed files with 5 additions and 5 deletions

View File

@@ -196,7 +196,7 @@ func TestRetryableErrors(t *testing.T) {
{fmt.Errorf("%w: %w", errHTTPPostFailure, errors.New("bad post")), true},
{fmt.Errorf("%w: %w", errNoNodeKey, errors.New("not node key")), true},
{errBadHTTPResponse(429, "too may requests"), true},
{errBadHTTPResponse(500, "internal server eror"), true},
{errBadHTTPResponse(500, "internal server error"), true},
{errBadHTTPResponse(502, "bad gateway"), true},
{errBadHTTPResponse(503, "service unavailable"), true},
{errBadHTTPResponse(504, "gateway timeout"), true},