From 3d3783d28c17b5fdb6e4bc6c82b88f5702c73818 Mon Sep 17 00:00:00 2001 From: Odin Ugedal Date: Sat, 15 Jun 2019 01:29:23 +0200 Subject: [PATCH] Fix linting error Make error string non-capitalized, to fix linting problem Signed-off-by: Odin Ugedal --- schema/loader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/loader.go b/schema/loader.go index c6bde0048..f17176595 100644 --- a/schema/loader.go +++ b/schema/loader.go @@ -59,7 +59,7 @@ func (factory *fsLoaderFactory) refContents(ref gojsonreference.JsonReference) ( } } if path == "" { - return nil, fmt.Errorf("Schema reference %#v unexpectedly not available in fsLoaderFactory with namespaces %#v", path, factory.namespaces) + return nil, fmt.Errorf("schema reference %#v unexpectedly not available in fsLoaderFactory with namespaces %#v", path, factory.namespaces) } f, err := factory.fs.Open(path)