Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
Make error string non-capitalized, to fix linting problem

Signed-off-by: Odin Ugedal <odin@ugedal.com>
  • Loading branch information
odinuge committed Jun 14, 2019
1 parent da296dc commit 3d3783d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema/loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3d3783d

Please sign in to comment.