Skip to content

Commit a916bca

Browse files
committed
correct new parsed
1 parent 422ec40 commit a916bca

2 files changed

Lines changed: 5 additions & 10 deletions

File tree

Streaming/Zip.hs

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,12 @@ import Data.ByteString.Streaming.Internal (ByteString (..))
3636

3737
--------------------------------------------------------------------------------
3838

39-
-- | Decompress a deflate-compressed byte stream.
40-
--
41-
-- See the "Codec.Compression.Zlib" module for details about 'Z.WindowBits'.
39+
-- | Decompress a streaming bytestring. 'Z.WindowBits' is from "Codec.Compression.Zlib"
4240
--
4341
-- @
44-
-- 'decompress' :: 'MonadIO' m
45-
-- => 'Z.WindowBits'
46-
-- => 'ByteString' m r
47-
-- -> 'ByteString' m r
42+
-- 'decompress' 'defaultWindowBits' :: 'MonadIO' m => 'ByteString' m r -> 'ByteString' m r
4843
-- @
44+
4945
decompress
5046
:: MonadIO m
5147
=> Z.WindowBits

streaming-utils.cabal

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ library
5959
, Streaming.Pipes
6060
, Streaming.Network.TCP
6161
, Streaming.Zip
62-
-- , Streaming.Pipes.Concurrent
6362

6463
-- other-modules:
6564
other-extensions: CPP, Trustworthy
@@ -68,8 +67,8 @@ library
6867
transformers >=0.4 && <0.5.3,
6968
mtl >=2.2 && <2.3,
7069
attoparsec > 0.13.0.0 && < 0.13.2.0,
71-
streaming >= 0.1.4.0 && < 0.1.4.6,
72-
streaming-bytestring >= 0.1.4.0 && < 0.1.4.6,
70+
streaming >= 0.1.4.0 && < 0.1.4.8,
71+
streaming-bytestring >= 0.1.4.0 && < 0.1.4.8,
7372
bytestring > 0.10.0 && < 0.11.0,
7473
pipes >= 4.0 && < 4.3,
7574
network-simple,

0 commit comments

Comments
 (0)