summaryrefslogtreecommitdiff
path: root/src/Data/BEncode/Internal.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/BEncode/Internal.hs')
-rw-r--r--src/Data/BEncode/Internal.hs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Data/BEncode/Internal.hs b/src/Data/BEncode/Internal.hs
index 3552bc9..4282cbf 100644
--- a/src/Data/BEncode/Internal.hs
+++ b/src/Data/BEncode/Internal.hs
@@ -6,10 +6,15 @@
6-- Portability : portable 6-- Portability : portable
7-- 7--
8-- This module provides bencode values serialization. Normally, you 8-- This module provides bencode values serialization. Normally, you
9-- don't need to import this module. 9-- don't need to import this module, use 'Data.BEncode' instead.
10-- 10--
11module Data.BEncode.Internal 11module Data.BEncode.Internal
12 ( parse 12 ( -- * Parsing
13 parser
14 , parse
15
16 -- * Rendering
17 , builder
13 , build 18 , build
14 , ppBEncode 19 , ppBEncode
15 ) where 20 ) where