From f1e15a54eee3cee9d879667a301cd7647e9596f7 Mon Sep 17 00:00:00 2001 From: IrishMaestro <70972101+IrishMaestro@users.noreply.github.com> Date: Sat, 22 Oct 2022 17:18:16 -0500 Subject: [PATCH] Typo fix typo fix for the word relative --- src/croc/croc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/croc/croc.go b/src/croc/croc.go index dfa813d..9c8de6a 100644 --- a/src/croc/croc.go +++ b/src/croc/croc.go @@ -252,7 +252,7 @@ func isEmptyFolder(folderPath string) (bool, error) { // This function retrives the important file informations // for every file that will be transferred func GetFilesInfo(fnames []string, zipfolder bool) (filesInfo []FileInfo, emptyFolders []FileInfo, totalNumberFolders int, err error) { - // fnames: the relativ/absolute paths of files/folders that will be transferred + // fnames: the relative/absolute paths of files/folders that will be transferred totalNumberFolders = 0 var paths []string for _, fname := range fnames {