From a712993e93605b9c153eaab16c2bf0cf449a7ec7 Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Tue, 23 May 2017 11:33:38 -0400 Subject: [PATCH] Add misspell lint Signed-off-by: Daniel Nephin --- cli/command/container/hijack.go | 2 +- gometalinter.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/command/container/hijack.go b/cli/command/container/hijack.go index 603557f3bd..b6d467d081 100644 --- a/cli/command/container/hijack.go +++ b/cli/command/container/hijack.go @@ -110,7 +110,7 @@ func (h *hijackedIOStreamer) setupInput() (restore func(), err error) { func (h *hijackedIOStreamer) beginOutputStream(restoreInput func()) <-chan error { if h.outputStream == nil && h.errorStream == nil { - // Ther is no need to copy output. + // There is no need to copy output. return nil } diff --git a/gometalinter.json b/gometalinter.json index 27b6735195..eb86268e63 100644 --- a/gometalinter.json +++ b/gometalinter.json @@ -14,6 +14,7 @@ "ineffassign", "interfacer", "lll", + "misspell", "unused", "vet" ],