From 50a665f27884100ddc3198acc23a1259238a9c22 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Mon, 5 Dec 2022 17:49:27 +1100 Subject: [PATCH] New go fmt on doc comments --- doc.go | 34 +++++++++++++++++----------------- storage/interface.go | 5 +++-- 2 files changed, 20 insertions(+), 19 deletions(-) diff --git a/doc.go b/doc.go index f1378076..bc90c0dc 100644 --- a/doc.go +++ b/doc.go @@ -1,24 +1,24 @@ /* Package torrent implements a torrent client. Goals include: - * Configurable data storage, such as file, mmap, and piece-based. - * Downloading on demand: torrent.Reader will request only the data required to - satisfy Reads, which is ideal for streaming and torrentfs. + - Configurable data storage, such as file, mmap, and piece-based. + - Downloading on demand: torrent.Reader will request only the data required to + satisfy Reads, which is ideal for streaming and torrentfs. BitTorrent features implemented include: - * Protocol obfuscation - * DHT - * uTP - * PEX - * Magnet links - * IP Blocklists - * Some IPv6 - * HTTP and UDP tracker clients - * BEPs: - - 3: Basic BitTorrent protocol - - 5: DHT - - 6: Fast Extension (have all/none only) - - 7: IPv6 Tracker Extension - - 9: ut_metadata + - Protocol obfuscation + - DHT + - uTP + - PEX + - Magnet links + - IP Blocklists + - Some IPv6 + - HTTP and UDP tracker clients + - BEPs: + - 3: Basic BitTorrent protocol + - 5: DHT + - 6: Fast Extension (have all/none only) + - 7: IPv6 Tracker Extension + - 9: ut_metadata - 10: Extension protocol - 11: PEX - 12: Multitracker metadata extension diff --git a/storage/interface.go b/storage/interface.go index 3d1bfb3b..b28a52b0 100644 --- a/storage/interface.go +++ b/storage/interface.go @@ -30,8 +30,9 @@ type TorrentImpl struct { } // Interacts with torrent piece data. Optional interfaces to implement include: -// io.WriterTo, such as when a piece supports a more efficient way to write out incomplete chunks. -// SelfHashing, such as when a piece supports a more efficient way to hash its contents. +// +// io.WriterTo, such as when a piece supports a more efficient way to write out incomplete chunks. +// SelfHashing, such as when a piece supports a more efficient way to hash its contents. type PieceImpl interface { // These interfaces are not as strict as normally required. They can // assume that the parameters are appropriate for the dimensions of the -- 2.44.0