We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de02c85 commit 5aea98fCopy full SHA for 5aea98f
2 files changed
core/src/Streamly/Internal/Data/Array/Stream.hs
@@ -1,4 +1,5 @@
1
{-# OPTIONS_GHC -Wno-deprecations #-}
2
+{-# OPTIONS_GHC -Wno-incomplete-patterns #-}
3
-- |
4
-- Module : Streamly.Internal.Data.Array.Stream
5
-- Copyright : (c) 2019 Composewell Technologies
core/src/Streamly/Internal/Data/Fold/Chunked.hs
@@ -1,3 +1,5 @@
+
-- Module : Streamly.Internal.Data.Fold.Chunked
-- Copyright : (c) 2021 Composewell Technologies
@@ -150,7 +152,7 @@ fromParserD (ParserD.Parser step1 initial1 extract1) =
150
152
151
153
step s (Array contents start end) = do
154
if start >= end
- then return $ Continue 0 s
155
+ then return $ Continue 1 s
156
else goArray SPEC start s
157
158
where
0 commit comments