Fix some comments (#418)

This commit is contained in:
pullmerge
2024-04-16 00:31:07 +08:00
committed by GitHub
parent 8fb8c9f2f2
commit 4997a261dc

View File

@@ -31,7 +31,7 @@ type DeleteOp struct {
// deleteContexts deletes context entries one by one. // deleteContexts deletes context entries one by one.
func (op DeleteOp) Run(_, stderr io.Writer) error { func (op DeleteOp) Run(_, stderr io.Writer) error {
for _, ctx := range op.Contexts { 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) deletedName, wasActiveContext, err := deleteContext(ctx)
if err != nil { if err != nil {
return errors.Wrapf(err, "error deleting context \"%s\"", deletedName) return errors.Wrapf(err, "error deleting context \"%s\"", deletedName)