Skip to content

Commit

Permalink
Fixed typo in error message for unknown azure environment (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas-goenka authored Nov 21, 2023
1 parent f6db28e commit 3143f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (c *Config) GetAzureEnvironment() (azureEnvironment, error) {
}
env, ok := azureEnvironments[strings.ToUpper(c.AzureEnvironment)]
if !ok {
return env, fmt.Errorf("azure envionment not found: %s", c.AzureEnvironment)
return env, fmt.Errorf("azure environment not found: %s", c.AzureEnvironment)
}
return env, nil
}
Expand Down

0 comments on commit 3143f3b

Please sign in to comment.