From 7ee25d59d6930be4e963c332c949b411a6915ebd Mon Sep 17 00:00:00 2001 From: Aravind Date: Mon, 1 Oct 2018 12:39:29 +0530 Subject: [PATCH] Fix typo in comment (#709) --- pkg/download/protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/download/protocol.go b/pkg/download/protocol.go index b9ceb9de..901cb5e0 100644 --- a/pkg/download/protocol.go +++ b/pkg/download/protocol.go @@ -29,7 +29,7 @@ type Protocol interface { Zip(ctx context.Context, mod, ver string) (io.ReadCloser, error) } -// Wrapper helps extend the main stasher's functionality with addons. +// Wrapper helps extend the main protocol's functionality with addons. type Wrapper func(Protocol) Protocol // Opts specifies download protocol options to avoid long func signature.