summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSam T <pxqr.sta@gmail.com>2013-06-06 12:25:44 +0400
committerSam T <pxqr.sta@gmail.com>2013-06-06 12:25:44 +0400
commit4ba781428bcca42ce9e73e559cabb76ca317fb57 (patch)
tree1ae32556ff2a3be98aca5fe72b9ff41ee4bf1064 /src
parent8e7c349e87a0416b595a3ef50f54f101652aa394 (diff)
~ Rename package to bittorrent.
It seems like 'network-bittorrent' is too long and annoying: everyone knows that bittorrent is a network protocol and there is no purpose to prefix it with 'network'. Moreover hackage do not have package with the our new name. So I think just 'bittorrent' is a more suitable name for the package.
Diffstat (limited to 'src')
-rw-r--r--src/Network/BitTorrent/Extension.hs3
-rw-r--r--src/Network/BitTorrent/Peer/ClientInfo.hs3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/Network/BitTorrent/Extension.hs b/src/Network/BitTorrent/Extension.hs
index 4b71f91f..0526ace7 100644
--- a/src/Network/BitTorrent/Extension.hs
+++ b/src/Network/BitTorrent/Extension.hs
@@ -7,7 +7,8 @@
7-- 7--
8-- This module provides peer capabilities detection. 8-- This module provides peer capabilities detection.
9-- 9--
10-- > See http://www.bittorrent.org/beps/bep_0004.html 10-- See <http://www.bittorrent.org/beps/bep_0004.html> for more
11-- information.
11-- 12--
12{-# LANGUAGE OverloadedStrings #-} 13{-# LANGUAGE OverloadedStrings #-}
13module Network.BitTorrent.Extension 14module Network.BitTorrent.Extension
diff --git a/src/Network/BitTorrent/Peer/ClientInfo.hs b/src/Network/BitTorrent/Peer/ClientInfo.hs
index bf7fcaab..7200471a 100644
--- a/src/Network/BitTorrent/Peer/ClientInfo.hs
+++ b/src/Network/BitTorrent/Peer/ClientInfo.hs
@@ -9,7 +9,8 @@
9-- implementation that can be later printed in human frienly 9-- implementation that can be later printed in human frienly
10-- form. Useful for debugging and logging. 10-- form. Useful for debugging and logging.
11-- 11--
12-- > See http://bittorrent.org/beps/bep_0020.html for more information. 12-- See <http://bittorrent.org/beps/bep_0020.html> for more
13-- information.
13-- 14--
14{-# LANGUAGE OverloadedStrings #-} 15{-# LANGUAGE OverloadedStrings #-}
15{-# LANGUAGE RecordWildCards #-} 16{-# LANGUAGE RecordWildCards #-}