Fix some comments

Signed-off-by: pullmerge <watchmessi@outlook.com>
This commit is contained in:
pullmerge 2024-04-14 11:07:26 +08:00
parent 8fb8c9f2f2
commit e6d52856c3

View File

@ -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)