From 4eb70757f7095a9928d6a34a9e8f28eaac066a42 Mon Sep 17 00:00:00 2001 From: Krisztian Litkey Date: Mon, 12 Aug 2024 10:06:43 +0300 Subject: [PATCH] pkg/adaptation: fix grammatical mistakes in comments. Co-authored-by: Mike Brown Signed-off-by: Krisztian Litkey --- pkg/adaptation/result.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/adaptation/result.go b/pkg/adaptation/result.go index f4038fe..1c227f5 100644 --- a/pkg/adaptation/result.go +++ b/pkg/adaptation/result.go @@ -401,10 +401,10 @@ func (r *result) adjustCDIDevices(devices []*CDIDevice, plugin string) error { // CDI devices are opaque references, typically to vendor specific // devices. They get resolved to actual devices and potential related // mounts, environment variables, etc. in the runtime. Unlike with - // devices, we only allow CDI devices references to be added to a + // devices, we only allow CDI device references to be added to a // container, not removed. We pass them unresolved to the runtime and // have them resolved there. Also unlike with devices, we don't include - // CDI device references in a creation requests. However, since there + // CDI device references in creation requests. However, since there // is typically a strong ownership and a single related management entity // per vendor/class for these devices we do treat multiple injection of // the same CDI device reference as an error here.