From 5c8dd70bb7e00d613e36ec255869e8790fd03e78 Mon Sep 17 00:00:00 2001 From: TaKO8Ki Date: Sat, 15 Feb 2020 23:20:15 +0900 Subject: [PATCH] fix typo --- update/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update/update.go b/update/update.go index 42eb5955f..5a96bed56 100644 --- a/update/update.go +++ b/update/update.go @@ -21,7 +21,7 @@ type StateEntry struct { LatestRelease ReleaseInfo `yaml:"latest_release"` } -// CheckForUpdate checks whether this software has had a newer relase on GitHub +// CheckForUpdate checks whether this software has had a newer release on GitHub func CheckForUpdate(client *api.Client, stateFilePath, repo, currentVersion string) (*ReleaseInfo, error) { latestRelease, err := getLatestReleaseInfo(client, stateFilePath, repo, currentVersion) if err != nil {