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

View File

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