Skip to content

Commit

Permalink
spelling: transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Mar 14, 2018
1 parent bf3bf79 commit 3b694fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/digitalocean/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,12 @@ func waitForImageState(
}
}()

log.Printf("Waiting for up to %d seconds for image transter to become %s", timeout/time.Second, desiredState)
log.Printf("Waiting for up to %d seconds for image transfer to become %s", timeout/time.Second, desiredState)
select {
case err := <-result:
return err
case <-time.After(timeout):
err := fmt.Errorf("Timeout while waiting to for image transter to become '%s'", desiredState)
err := fmt.Errorf("Timeout while waiting to for image transfer to become '%s'", desiredState)
return err
}
}

0 comments on commit 3b694fe

Please sign in to comment.