From ad4654fa63beac13c4fbb38aa8fd06eaec25cb5e Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Mon, 27 Feb 2023 17:00:28 +0300 Subject: [PATCH] updater: imp docs --- internal/updater/check.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/updater/check.go b/internal/updater/check.go index fcf45802905..a72e58eeb97 100644 --- a/internal/updater/check.go +++ b/internal/updater/check.go @@ -108,8 +108,8 @@ func (u *Updater) parseVersionResponse(data []byte) (VersionInfo, error) { } // downloadURL returns the download URL for current build as well as its key in -// versionObj. If the key is not found, it additionally publishes a log -// message. +// versionObj. If the key is not found, it additionally prints an informative +// log message. func (u *Updater) downloadURL(versionObj map[string]string) (dlURL, key string, ok bool) { if u.goarch == "arm" && u.goarm != "" { key = fmt.Sprintf("download_%s_%sv%s", u.goos, u.goarch, u.goarm)