From b12278b2f54080a611c3768ff790716e4845d7e6 Mon Sep 17 00:00:00 2001 From: petryshkaCODE <71spates.bravest@icloud.com> Date: Mon, 30 Dec 2024 16:59:44 +0100 Subject: [PATCH] typo fix http.go Signed-off-by: petryshkaCODE <71spates.bravest@icloud.com> --- http/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/http.go b/http/http.go index 18f90c04..1342841d 100644 --- a/http/http.go +++ b/http/http.go @@ -274,7 +274,7 @@ func (s *Service) get(ctx context.Context, case errors.Is(err, context.DeadlineExceeded): // We don't consider context deadline exceeded to be a potential connection issue, as the user selected the deadline. case strings.HasSuffix(callURL.String(), "/node/syncing"): - // Special case; if we have called the syncing endpoint and it failed then we don't check the connectino status, as + // Special case; if we have called the syncing endpoint and it failed then we don't check the connection status, as // that calls the syncing endpoint itself and so we find ourselves in an endless loop. default: // We consider other errors to be potential connection issues.