From 65b545be163680e09d84c418e0e2ed577244891d Mon Sep 17 00:00:00 2001 From: HowJMay Date: Tue, 21 Jan 2020 03:04:20 +0800 Subject: [PATCH] fix: Fix typo --- pkg/operator/operator/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/operator/operator/api.go b/pkg/operator/operator/api.go index 2f8fbe7594..147a1b2246 100644 --- a/pkg/operator/operator/api.go +++ b/pkg/operator/operator/api.go @@ -113,7 +113,7 @@ func RefreshAPI(apiName string, force bool) (string, error) { apiID := prevDeployment.Labels["apiID"] if apiID == "" { - return "", errors.New("unable to retreive api ID from deployment") // unexpected + return "", errors.New("unable to retrieve api ID from deployment") // unexpected } api, err := DownloadAPISpec(apiName, apiID)