Update provider/godaddy/godaddy.go

Typo: rename e to err

Co-authored-by: Nick Jüttner <nick@juni.io>
This commit is contained in:
Frederic BOLTZ 2021-05-27 10:54:19 +02:00 committed by GitHub
parent d307a23f5a
commit 8763a504b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -551,7 +551,7 @@ func toString(obj interface{}) string {
b, err := json.MarshalIndent(obj, "", " ")
if err != nil {
return fmt.Sprintf("<%v>", e)
return fmt.Sprintf("<%v>", err)
}
return string(b)