@cryptotaxi247 / kubo / commits / 6a25b67e4

Fix typo in message when file is not determined

License: MIT Signed-off-by: Miguel Torres <migueltorreslopez@gmail.com>

Miguel Torres committed May 1, 2017 at 20:59 UTC 6a25b67e4d1d87983fd0324bf2e9ab0e9b02e838
1 file changed +1 -1
core/commands/add.go
+1 -1
@@ -111,7 +111,7 @@ You can now refer to the added file in a gateway, like so:
111 sizeFile, ok := req.Files().(files.SizeFile)
112 if !ok {
113 // we don't need to error, the progress bar just won't know how big the files are
114 - log.Warning("cannnot determine size of input file")
114 + log.Warning("cannot determine size of input file")
115 return nil
116 }
117