From 31190405047e59397dc905a03a954de2b9dfbf31 Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Wed, 30 Jan 2019 10:42:21 +0100 Subject: [PATCH] Document FileGetter.Copy with new behaviour --- get_file.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/get_file.go b/get_file.go index 786219f03..78660839a 100644 --- a/get_file.go +++ b/get_file.go @@ -10,7 +10,9 @@ import ( type FileGetter struct { getter - // Copy, if set to true, will copy data instead of using a symlink + // Copy, if set to true, will copy data instead of using a symlink. If + // false, attempts to symlink to speed up the operation and to lower the + // disk space usage. If the symlink fails, may attempt to copy on windows. Copy bool }