refactor(style): error str shouldnt be capitalized

This commit is contained in:
Roxie Gibson 2021-08-02 01:09:25 +01:00
parent ffd1b3a771
commit dc4e490497
Signed by untrusted user: roxxers
GPG Key ID: 5D0140EDEE123F4D
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ later for more advanced use cases.
}
if string(ipv4) == "" {
return fmt.Errorf("Unable to retrieve ipv4 address for %s", host)
return fmt.Errorf("unable to retrieve ipv4 address for %s", host)
}
ctx := context.Background()