From 780762f9d2ad86f5268eaf5d0af14bfa4f44470f Mon Sep 17 00:00:00 2001 From: breatn Date: Thu, 6 Nov 2025 22:44:44 +0000 Subject: [PATCH] server: fix duplicate 'is' typo in comment (#12985) --- server/download.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/download.go b/server/download.go index 784ba2d5..42d713c0 100644 --- a/server/download.go +++ b/server/download.go @@ -465,7 +465,7 @@ type downloadOpts struct { // downloadBlob downloads a blob from the registry and stores it in the blobs directory func downloadBlob(ctx context.Context, opts downloadOpts) (cacheHit bool, _ error) { if opts.digest == "" { - return false, fmt.Errorf(("%s: %s"), opts.mp.GetNamespaceRepository(), "digest is is empty") + return false, fmt.Errorf(("%s: %s"), opts.mp.GetNamespaceRepository(), "digest is empty") } fp, err := GetBlobsPath(opts.digest)