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:53:59 +02:00 committed by GitHub
parent 1c35d74521
commit 37654ebad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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