From aa84c3e4a2aeec89eeabe26c603ef39b2cb0a695 Mon Sep 17 00:00:00 2001 From: Carlos Sanchez Date: Thu, 21 Nov 2019 12:23:28 +0100 Subject: [PATCH] Typo --- kubeval/kubeval.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubeval/kubeval.go b/kubeval/kubeval.go index a3f1d2a..afc62e1 100644 --- a/kubeval/kubeval.go +++ b/kubeval/kubeval.go @@ -188,7 +188,7 @@ func downloadSchema(resource *ValidationResult, schemaCache map[string]*gojsonsc return schema, nil } // We couldn't find a schema for this URL, so take a note, then try the next URL - wrappedErr := fmt.Errorf("Failed initalizing schema %s: %s", schemaRef, err) + wrappedErr := fmt.Errorf("Failed initializing schema %s: %s", schemaRef, err) errors = multierror.Append(errors, wrappedErr) }