diff --git a/pkg/nvcdi/lib-csv.go b/pkg/nvcdi/lib-csv.go index 649b801a..75ad00a4 100644 --- a/pkg/nvcdi/lib-csv.go +++ b/pkg/nvcdi/lib-csv.go @@ -35,7 +35,7 @@ var _ Interface = (*csvlib)(nil) // GetSpec should not be called for wsllib func (l *csvlib) GetSpec() (spec.Interface, error) { - return nil, fmt.Errorf("Unexpected call to csvlib.GetSpec()") + return nil, fmt.Errorf("unexpected call to csvlib.GetSpec()") } // GetAllDeviceSpecs returns the device specs for all available devices. diff --git a/pkg/nvcdi/lib-wsl.go b/pkg/nvcdi/lib-wsl.go index 1c96c538..dd0e8db0 100644 --- a/pkg/nvcdi/lib-wsl.go +++ b/pkg/nvcdi/lib-wsl.go @@ -33,7 +33,7 @@ var _ Interface = (*wsllib)(nil) // GetSpec should not be called for wsllib func (l *wsllib) GetSpec() (spec.Interface, error) { - return nil, fmt.Errorf("Unexpected call to wsllib.GetSpec()") + return nil, fmt.Errorf("unexpected call to wsllib.GetSpec()") } // GetAllDeviceSpecs returns the device specs for all available devices.