From bd5ae2cb6d24155d54cc482865453af2a3686955 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Sun, 15 Jul 2018 12:56:28 +1000 Subject: [PATCH] Fix doc comment --- storage/file.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/file.go b/storage/file.go index dd22a051..fd4d5601 100644 --- a/storage/file.go +++ b/storage/file.go @@ -36,7 +36,7 @@ func NewFileWithCompletion(baseDir string, completion PieceCompletion) ClientImp return newFileWithCustomPathMakerAndCompletion(baseDir, nil, completion) } -// All Torrent data stored in subdirectorys by infohash +// File storage with data partitioned by infohash. func NewFileByInfoHash(baseDir string) ClientImpl { return NewFileWithCustomPathMaker(baseDir, infoHashPathMaker) } -- 2.48.1