From f7f6b781c76553daadf57fbae1073bd0b5638f0b Mon Sep 17 00:00:00 2001 From: jinbearlo Date: Sat, 8 Jun 2024 16:12:33 +0900 Subject: [PATCH] signer/core: fix a typo --- signer/core/signed_data.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signer/core/signed_data.go b/signer/core/signed_data.go index f8b3c9d86d..2edeee11fe 100644 --- a/signer/core/signed_data.go +++ b/signer/core/signed_data.go @@ -89,7 +89,7 @@ func (api *SignerAPI) SignData(ctx context.Context, contentType string, addr com // determineSignatureFormat determines which signature method should be used based upon the mime type // In the cases where it matters ensure that the charset is handled. The charset -// resides in the 'params' returned as the second returnvalue from mime.ParseMediaType +// resides in the 'params' returned as the second return value from mime.ParseMediaType // charset, ok := params["charset"] // As it is now, we accept any charset and just treat it as 'raw'. // This method returns the mimetype for signing along with the request