From e2ccfdb8df142a953b33a0fb01e189f1822fdd12 Mon Sep 17 00:00:00 2001 From: Dominic Della Valle Date: Tue, 17 May 2016 03:49:22 -0400 Subject: [PATCH] Fix typo in files command error message License: MIT Signed-off-by: Dominic Della Valle --- commands/files/file.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/files/file.go b/commands/files/file.go index 37802fe3f..c2185153c 100644 --- a/commands/files/file.go +++ b/commands/files/file.go @@ -7,7 +7,7 @@ import ( ) var ( - ErrNotDirectory = errors.New("Couln't call NextFile(), this isn't a directory") + ErrNotDirectory = errors.New("Couldn't call NextFile(), this isn't a directory") ErrNotReader = errors.New("This file is a directory, can't use Reader functions") )