mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2025-04-22 23:24:18 +00:00
[no-relnote] Fix ST1005: error strings should not be capitalized lint errors
Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
parent
3913a6392b
commit
0fb3eec1bb
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user