summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--network-bittorrent.cabal2
-rw-r--r--src/Network/Torrent/Tracker/Scrape.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/network-bittorrent.cabal b/network-bittorrent.cabal
index 399b0c7c..facbf2f7 100644
--- a/network-bittorrent.cabal
+++ b/network-bittorrent.cabal
@@ -1,6 +1,6 @@
1name: network-bittorrent 1name: network-bittorrent
2version: 0.1.0.0 2version: 0.1.0.0
3synopsis: Straightforward and incomplete implementation of bittorrent protocol. 3synopsis: Bittorrent protocol implementation.
4description: Straightforward and incomplete implementation of bittorrent protocol. 4description: Straightforward and incomplete implementation of bittorrent protocol.
5license: MIT 5license: MIT
6license-file: LICENSE 6license-file: LICENSE
diff --git a/src/Network/Torrent/Tracker/Scrape.hs b/src/Network/Torrent/Tracker/Scrape.hs
index 5152b79f..80a9fc0a 100644
--- a/src/Network/Torrent/Tracker/Scrape.hs
+++ b/src/Network/Torrent/Tracker/Scrape.hs
@@ -34,7 +34,7 @@ data ScrapeInfo = ScrapeInfo {
34 , siIncomplete :: Int 34 , siIncomplete :: Int
35 -- ^ Number of leechers. 35 -- ^ Number of leechers.
36 , siName :: Maybe ByteString 36 , siName :: Maybe ByteString
37 -- | Name of the torrent file, as specified by the "name" 37 -- ^ Name of the torrent file, as specified by the "name"
38 -- file in the info section of the .torrent file. 38 -- file in the info section of the .torrent file.
39 } deriving (Show, Eq) 39 } deriving (Show, Eq)
40 40