From 1eed5ddbe0ff2c5bba3014d6091148c027a504d4 Mon Sep 17 00:00:00 2001 From: Krzysztof Wilczynski Date: Fri, 16 Sep 2016 16:09:20 +0100 Subject: [PATCH] Fix. Correct a typo in the error message. (#8882) This comment corrects a simple typo in the error message issued when the credentials are not working and/or do not offer access to AzureRM, etc. Signed-off-by: Krzysztof Wilczynski --- builtin/providers/azurerm/provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/azurerm/provider.go b/builtin/providers/azurerm/provider.go index b208c8e21..d0317c979 100644 --- a/builtin/providers/azurerm/provider.go +++ b/builtin/providers/azurerm/provider.go @@ -159,7 +159,7 @@ func registerProviderWithSubscription(providerName string, client *riviera.Clien } if !response.IsSuccessful() { - return fmt.Errorf("Credentials for acessing the Azure Resource Manager API are likely " + + return fmt.Errorf("Credentials for accessing the Azure Resource Manager API are likely " + "to be incorrect, or\n the service principal does not have permission to use " + "the Azure Service Management\n API.") }