From c2f61b0fe3f6b28917819a069ea7f9cfee98fa4b Mon Sep 17 00:00:00 2001 From: Mike Frisch Date: Tue, 11 Jun 2024 10:32:20 -0400 Subject: [PATCH] runtime: spelling fixes Minor spelling fixes in runtime log messages. Signed-off-by: Mike Frisch --- src/runtime/pkg/govmm/qemu/qmp.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/pkg/govmm/qemu/qmp.go b/src/runtime/pkg/govmm/qemu/qmp.go index 8241d91729..bf18bef9fc 100644 --- a/src/runtime/pkg/govmm/qemu/qmp.go +++ b/src/runtime/pkg/govmm/qemu/qmp.go @@ -457,7 +457,7 @@ func failOutstandingCommands(cmdQueue *list.List) { cmd := e.Value.(*qmpCommand) select { case cmd.res <- qmpResult{ - err: errors.New("exitting QMP loop, command cancelled"), + err: errors.New("exiting QMP loop, command cancelled"), }: case <-cmd.ctx.Done(): } @@ -626,7 +626,7 @@ func (q *QMP) executeCommandWithResponse(ctx context.Context, name string, args resCh := make(chan qmpResult) select { case <-q.disconnectedCh: - err = errors.New("exitting QMP loop, command cancelled") + err = errors.New("exiting QMP loop, command cancelled") case q.cmdCh <- qmpCommand{ ctx: ctx, res: resCh,