From 63b3fc4a996ebd40e91c8d00c2e0ba5562c6e1e1 Mon Sep 17 00:00:00 2001 From: IamCathal Date: Thu, 6 Aug 2020 16:09:06 +0100 Subject: [PATCH] Fix retry amount comment --- pkg/httplib/httplib.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/httplib/httplib.go b/pkg/httplib/httplib.go index 1438a881..7255b2ca 100644 --- a/pkg/httplib/httplib.go +++ b/pkg/httplib/httplib.go @@ -195,7 +195,7 @@ func (b *BeegoHTTPRequest) Debug(isdebug bool) *BeegoHTTPRequest { } // Retries sets Retries times. -// default is 0 (never retries) +// default is 0 (never retry) // -1 retry indefinitely (forever) // Other numbers specify the exact retry amount func (b *BeegoHTTPRequest) Retries(times int) *BeegoHTTPRequest {