Skip to content

Commit 3d3783d

Browse files
committed
Fix linting error
Make error string non-capitalized, to fix linting problem Signed-off-by: Odin Ugedal <[email protected]>
1 parent da296dc commit 3d3783d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema/loader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (factory *fsLoaderFactory) refContents(ref gojsonreference.JsonReference) (
5959
}
6060
}
6161
if path == "" {
62-
return nil, fmt.Errorf("Schema reference %#v unexpectedly not available in fsLoaderFactory with namespaces %#v", path, factory.namespaces)
62+
return nil, fmt.Errorf("schema reference %#v unexpectedly not available in fsLoaderFactory with namespaces %#v", path, factory.namespaces)
6363
}
6464

6565
f, err := factory.fs.Open(path)

0 commit comments

Comments
 (0)