improve haddocks

This commit is contained in:
Joey Hess 2024-08-13 15:05:49 -04:00
parent f612ebb934
commit 343c87db45
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -330,9 +330,12 @@ catObjectStream
:: (MonadMask m, MonadIO m)
=> Repo
-> (
((v, Ref) -> IO ()) -- ^ call to feed values in
-> IO () -- call once all values are fed in
-> IO (Maybe (v, Maybe L.ByteString)) -- call to read results
((v, Ref) -> IO ())
-- ^ call to feed values in
-> IO ()
-- ^ call once all values are fed in
-> IO (Maybe (v, Maybe L.ByteString))
-- ^ call to read results
-> m a
)
-> m a
@ -350,9 +353,12 @@ catObjectMetaDataStream
:: (MonadMask m, MonadIO m)
=> Repo
-> (
((v, Ref) -> IO ()) -- ^ call to feed values in
-> IO () -- call once all values are fed in
-> IO (Maybe (v, Maybe (Sha, FileSize, ObjectType))) -- call to read results
((v, Ref) -> IO ())
-- ^ call to feed values in
-> IO ()
-- ^ call once all values are fed in
-> IO (Maybe (v, Maybe (Sha, FileSize, ObjectType)))
-- ^ call to read results
-> m a
)
-> m a