From e6d52856c3b3c3ee330860e2ab29f06a8ef5d197 Mon Sep 17 00:00:00 2001 From: pullmerge Date: Sun, 14 Apr 2024 11:07:26 +0800 Subject: [PATCH] Fix some comments Signed-off-by: pullmerge --- cmd/kubectx/delete.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubectx/delete.go b/cmd/kubectx/delete.go index e2d8b55..ca5747b 100644 --- a/cmd/kubectx/delete.go +++ b/cmd/kubectx/delete.go @@ -31,7 +31,7 @@ type DeleteOp struct { // deleteContexts deletes context entries one by one. func (op DeleteOp) Run(_, stderr io.Writer) error { for _, ctx := range op.Contexts { - // TODO inefficency here. we open/write/close the same file many times. + // TODO inefficiency here. we open/write/close the same file many times. deletedName, wasActiveContext, err := deleteContext(ctx) if err != nil { return errors.Wrapf(err, "error deleting context \"%s\"", deletedName)