From fc36349e9010dcee178c20a6c3d68099e10916fa Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Fri, 25 May 2018 10:56:31 +0300 Subject: [PATCH] fix spelling mistake Fixed misspell warning pointed out by goreportcard.com: misspell 83% Misspell Finds commonly misspelled English words intel-device-plugins-for-kubernetes/internal/deviceplugin/deviceplugin_test.go Line 90: warning: "emtpy" is a misspelling of "empty" (misspell) --- internal/deviceplugin/deviceplugin_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/deviceplugin/deviceplugin_test.go b/internal/deviceplugin/deviceplugin_test.go index 49c895ab..eaabef62 100644 --- a/internal/deviceplugin/deviceplugin_test.go +++ b/internal/deviceplugin/deviceplugin_test.go @@ -87,7 +87,7 @@ func (ps *pluginStub) GetDevicePluginOptions(ctx context.Context, empty *plugina return new(pluginapi.DevicePluginOptions), nil } -func (ps *pluginStub) ListAndWatch(emtpy *pluginapi.Empty, stream pluginapi.DevicePlugin_ListAndWatchServer) error { +func (ps *pluginStub) ListAndWatch(empty *pluginapi.Empty, stream pluginapi.DevicePlugin_ListAndWatchServer) error { return nil }