@cryptotaxi247 / kubo / commits / e2ccfdb8d

Fix typo in files command error message

License: MIT Signed-off-by: Dominic Della Valle <ddvpublic@gmail.com>

Dominic Della Valle committed May 17, 2016 at 03:49 UTC e2ccfdb8df142a953b33a0fb01e189f1822fdd12
1 file changed +1 -1
commands/files/file.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 )
8
9 var (
10 - ErrNotDirectory = errors.New("Couln't call NextFile(), this isn't a directory")
10 + ErrNotDirectory = errors.New("Couldn't call NextFile(), this isn't a directory")
11 ErrNotReader = errors.New("This file is a directory, can't use Reader functions")
12 )
13