From 18ea183ea0abd18cde0d17e57fc0fa9b19cfab08 Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Mon, 10 Mar 2014 21:51:19 -0500 Subject: [PATCH] spelling correction s/singal/signal/ Docker-DCO-1.1-Signed-off-by: Dolph Mathews (github: dolph) --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index f557c02b64..48bb6f9805 100644 --- a/server.go +++ b/server.go @@ -138,7 +138,7 @@ func (srv *Server) ContainerKill(job *engine.Job) engine.Status { // If we have a signal, look at it. Otherwise, do nothing if len(job.Args) == 2 && job.Args[1] != "" { - // Check if we passed the singal as a number: + // Check if we passed the signal as a number: // The largest legal signal is 31, so let's parse on 5 bits sig, err = strconv.ParseUint(job.Args[1], 10, 5) if err != nil {