[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:
Evan Lezar 2025-04-02 14:14:54 +02:00
parent 3913a6392b
commit 0fb3eec1bb
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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.