From a3f70b874ba5d77b482741752f7804f73de99220 Mon Sep 17 00:00:00 2001 From: Rickard von Essen Date: Sun, 9 Apr 2017 20:38:19 +0200 Subject: [PATCH] Spelling (context) --- builder/digitalocean/step_shutdown.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/digitalocean/step_shutdown.go b/builder/digitalocean/step_shutdown.go index 655a00cbd..dfa47dc4a 100644 --- a/builder/digitalocean/step_shutdown.go +++ b/builder/digitalocean/step_shutdown.go @@ -51,7 +51,7 @@ func (s *stepShutdown) Run(state multistep.StateBag) multistep.StepAction { for attempts := 2; attempts > 0; attempts++ { log.Printf("ShutdownDroplet attempt #%d...", attempts) - _, _, err := client.DropletActions.Shutdown(contect.TODO(), dropletId) + _, _, err := client.DropletActions.Shutdown(context.TODO(), dropletId) if err != nil { log.Printf("Shutdown retry error: %s", err) }