From 85d99de26bcd30f91c104b783713156195f8f1ef Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 9 Feb 2016 16:15:50 +0000 Subject: [PATCH] Fix typo in error strings --- fs/fs.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/fs.go b/fs/fs.go index cce1a6a98..235d93155 100644 --- a/fs/fs.go +++ b/fs/fs.go @@ -27,8 +27,8 @@ var ( ErrorNotFoundInConfigFile = fmt.Errorf("Didn't find section in config file") ErrorCantPurge = fmt.Errorf("Can't purge directory") ErrorCantCopy = fmt.Errorf("Can't copy object - incompatible remotes") - ErrorCantMove = fmt.Errorf("Can't copy object - incompatible remotes") - ErrorCantDirMove = fmt.Errorf("Can't copy directory - incompatible remotes") + ErrorCantMove = fmt.Errorf("Can't move object - incompatible remotes") + ErrorCantDirMove = fmt.Errorf("Can't move directory - incompatible remotes") ErrorDirExists = fmt.Errorf("Can't copy directory - destination already exists") )