From 8e9ea7b4818155893a26fb0ef8a498cf1149e826 Mon Sep 17 00:00:00 2001 From: Sebastian Sterk Date: Wed, 2 Feb 2022 00:04:35 +0100 Subject: [PATCH] simple grammar fix --- pkg/volume/csi/csi_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/volume/csi/csi_client.go b/pkg/volume/csi/csi_client.go index 05e889697ea..8483ca651d2 100644 --- a/pkg/volume/csi/csi_client.go +++ b/pkg/volume/csi/csi_client.go @@ -137,7 +137,7 @@ type nodeV1ClientCreator func(addr csiAddr, metricsManager *MetricsManager) ( type nodeV1AccessModeMapper func(am api.PersistentVolumeAccessMode) csipbv1.VolumeCapability_AccessMode_Mode // newV1NodeClient creates a new NodeClient with the internally used gRPC -// connection set up. It also returns a closer which must to be called to close +// connection set up. It also returns a closer which must be called to close // the gRPC connection when the NodeClient is not used anymore. // This is the default implementation for the nodeV1ClientCreator, used in // newCsiDriverClient.