From af2072237d3339e76adfb18bdf15c0f1f9ef1abe Mon Sep 17 00:00:00 2001 From: Mathias Lafeldt Date: Tue, 13 Sep 2016 17:47:11 +0200 Subject: [PATCH] Fix typo in alloc-status output --- command/alloc_status.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/command/alloc_status.go b/command/alloc_status.go index b25dc97d2..71f859c07 100644 --- a/command/alloc_status.go +++ b/command/alloc_status.go @@ -299,9 +299,9 @@ func (c *AllocStatusCommand) outputTaskStatus(state *api.TaskState) { } case api.TaskKilling: if event.KillTimeout != 0 { - desc = fmt.Sprintf("Sent interupt. Waiting %v before force killing", event.KillTimeout) + desc = fmt.Sprintf("Sent interrupt. Waiting %v before force killing", event.KillTimeout) } else { - desc = "Sent interupt" + desc = "Sent interrupt" } case api.TaskKilled: if event.KillError != "" {