Changed the wording of error messages slightly

This commit is contained in:
David J. Allen 2024-05-08 13:39:51 -06:00
parent cc7bad8b94
commit 0403b2bcbc
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC
11 changed files with 31 additions and 32 deletions

View file

@ -72,7 +72,7 @@ func LoadAccessToken() (string, error) {
if testToken != "" {
return testToken, nil
}
return "", fmt.Errorf("could not load token from environment variable, file, or config")
return "", fmt.Errorf("failed toload token from environment variable, file, or config")
}
func init() {