Skip to content

Commit 356865d

Browse files
tomjaguarpawandrewthad
authored andcommitted
Correct Haddock references
1 parent d278dbc commit 356865d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Streaming/Prelude.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2158,15 +2158,15 @@ yield :: Monad m => a -> Stream (Of a) m ()
21582158
yield a = Step (a :> Return ())
21592159
{-# INLINE yield #-}
21602160

2161-
-- | Zip two 'Streams's
2161+
-- | Zip two 'Stream's
21622162
zip :: Monad m
21632163
=> (Stream (Of a) m r)
21642164
-> (Stream (Of b) m r)
21652165
-> (Stream (Of (a,b)) m r)
21662166
zip = zipWith (,)
21672167
{-# INLINE zip #-}
21682168

2169-
-- | Zip two 'Streams's using the provided combining function
2169+
-- | Zip two 'Stream's using the provided combining function
21702170
zipWith :: Monad m
21712171
=> (a -> b -> c)
21722172
-> (Stream (Of a) m r)
@@ -2210,7 +2210,7 @@ zipWith3 op = loop where
22102210
{-# INLINABLE zipWith3 #-}
22112211

22122212

2213-
-- | Zip three streams together
2213+
-- | Zip three 'Stream's together
22142214
zip3 :: Monad m
22152215
=> (Stream (Of a) m r)
22162216
-> (Stream (Of b) m r)

0 commit comments

Comments
 (0)