From 6a25b67e4d1d87983fd0324bf2e9ab0e9b02e838 Mon Sep 17 00:00:00 2001 From: Miguel Torres Date: Mon, 1 May 2017 20:59:08 -0700 Subject: [PATCH] Fix typo in message when file is not determined License: MIT Signed-off-by: Miguel Torres --- core/commands/add.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/commands/add.go b/core/commands/add.go index a16817db935..526e6fb4903 100644 --- a/core/commands/add.go +++ b/core/commands/add.go @@ -111,7 +111,7 @@ You can now refer to the added file in a gateway, like so: sizeFile, ok := req.Files().(files.SizeFile) if !ok { // we don't need to error, the progress bar just won't know how big the files are - log.Warning("cannnot determine size of input file") + log.Warning("cannot determine size of input file") return nil }