File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2158,15 +2158,15 @@ yield :: Monad m => a -> Stream (Of a) m ()
21582158yield a = Step (a :> Return () )
21592159{-# INLINE yield #-}
21602160
2161- -- | Zip two 'Streams 's
2161+ -- | Zip two 'Stream 's
21622162zip :: Monad m
21632163 => (Stream (Of a ) m r )
21642164 -> (Stream (Of b ) m r )
21652165 -> (Stream (Of (a ,b )) m r )
21662166zip = 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
21702170zipWith :: 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
22142214zip3 :: Monad m
22152215 => (Stream (Of a ) m r )
22162216 -> (Stream (Of b ) m r )
You can’t perform that action at this time.
0 commit comments