From 77469fa3f91d4f55bec59752c5a5e1598b6ca1e8 Mon Sep 17 00:00:00 2001 From: Alex Leites <18728999+tallaxes@users.noreply.github.com> Date: Tue, 21 Nov 2023 20:01:07 -0800 Subject: [PATCH] fix: typo in comment --- pkg/providers/instance/instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/providers/instance/instance.go b/pkg/providers/instance/instance.go index 0ad13c8ad..1d7c30e11 100644 --- a/pkg/providers/instance/instance.go +++ b/pkg/providers/instance/instance.go @@ -444,7 +444,7 @@ func (p *Provider) launchInstance( return resp, instanceType, nil } -// isSKUNotAvailable - to be moved to azure-ask-for-go-extensions +// isSKUNotAvailable - to be moved to azure-sdk-for-go-extensions func isSKUNotAvailable(err error) bool { azErr := sdkerrors.IsResponseError(err) return azErr != nil && azErr.ErrorCode == "SkuNotAvailable"