From 0a23dc690f0ae3a2844adfb2afc2a30a9fbff3eb Mon Sep 17 00:00:00 2001 From: Greg Dallavalle Date: Fri, 18 Aug 2023 09:17:37 -0500 Subject: [PATCH] comment cleanup --- disk/disk_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disk/disk_linux.go b/disk/disk_linux.go index 77d7deabd..5015c34ae 100644 --- a/disk/disk_linux.go +++ b/disk/disk_linux.go @@ -475,7 +475,7 @@ func IOCountersWithContext(ctx context.Context, names ...string) (map[string]IOC d.Name = name // Names passed in can be full paths (/dev/sda) or just device names (sda). - // Since `name`` here is already a basename, re-add the /dev path. + // Since `name` here is already a basename, re-add the /dev path. // This is not ideal, but we may break the API by changing how SerialNumberWithContext // works. d.SerialNumber, _ = SerialNumberWithContext(ctx, common.HostDevWithContext(ctx, name))