From: Matt Joiner Date: Sun, 15 Jul 2018 02:56:28 +0000 (+1000) Subject: Fix doc comment X-Git-Tag: v1.0.0~76 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=bd5ae2cb6d24155d54cc482865453af2a3686955;p=btrtrc.git Fix doc comment --- 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) }