From 75a934e11c98855e44f97cba8bfbe1eb2e0f0c5c Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Mon, 25 Nov 2024 13:45:20 +0100 Subject: [PATCH] [no-relnote] Fix error string Signed-off-by: Evan Lezar --- pkg/nvcdi/lib-nvml.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/nvcdi/lib-nvml.go b/pkg/nvcdi/lib-nvml.go index 01c22ff37..c940b090d 100644 --- a/pkg/nvcdi/lib-nvml.go +++ b/pkg/nvcdi/lib-nvml.go @@ -37,7 +37,7 @@ var _ Interface = (*nvmllib)(nil) // GetSpec should not be called for nvmllib func (l *nvmllib) GetSpec() (spec.Interface, error) { - return nil, fmt.Errorf("Unexpected call to nvmllib.GetSpec()") + return nil, fmt.Errorf("unexpected call to nvmllib.GetSpec()") } // GetAllDeviceSpecs returns the device specs for all available devices.