From c61ff290dbfa6dab4928c0b273db18fddb10df37 Mon Sep 17 00:00:00 2001 From: pgxiaolianzi Date: Fri, 2 Aug 2024 14:50:23 +0000 Subject: [PATCH] mime: add available godoc link Change-Id: Ic5454758c87e9f84a829aed8a72b5ad977878585 GitHub-Last-Rev: 2eb8ced71286a3bc3b53b35c809164b07ef28a16 GitHub-Pull-Request: golang/go#68605 Reviewed-on: https://go-review.googlesource.com/c/go/+/601295 Auto-Submit: Ian Lance Taylor Reviewed-by: Michael Knyszek Reviewed-by: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI --- src/mime/encodedword.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mime/encodedword.go b/src/mime/encodedword.go index 856433f8f3..c4afad043a 100644 --- a/src/mime/encodedword.go +++ b/src/mime/encodedword.go @@ -226,7 +226,7 @@ func (d *WordDecoder) Decode(word string) (string, error) { } // DecodeHeader decodes all encoded-words of the given string. It returns an -// error if and only if WordDecoder.CharsetReader of d returns an error. +// error if and only if [WordDecoder.CharsetReader] of d returns an error. func (d *WordDecoder) DecodeHeader(header string) (string, error) { // If there is no encoded-word, returns before creating a buffer. i := strings.Index(header, "=?")