Skip to content
This repository was archived by the owner on Aug 4, 2023. It is now read-only.

Commit 644af89

Browse files
committed
Prep for v1.1
1 parent b3ac176 commit 644af89

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
# v1.1.0
3+
4+
* `write` will throw errors after `drain` event.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![CI](https://github.com/jamesdbrock/purescript-node-streams-aff/workflows/CI/badge.svg?branch=main)](https://github.com/jamesdbrock/purescript-node-streams-aff/actions?query=workflow%3ACI+branch%3Amain)
55
[![Pursuit](https://pursuit.purescript.org/packages/purescript-node-streams-aff/badge)](https://pursuit.purescript.org/packages/purescript-node-streams-aff)
66

7-
Asynchronous PureScript API for the [*Node.js* `stream` API](https://nodejs.org/docs/latest/api/stream.html).
7+
Asynchronous PureScript API for [*Node.js* Stream](https://nodejs.org/docs/latest/api/stream.html).
88

99
## Prior art
1010

src/Node/Stream/Aff.purs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- | Asynchronous I/O with *Node.js* streams.
1+
-- | Asynchronous I/O with [*Node.js* Stream](https://nodejs.org/docs/latest/api/stream.html).
22
-- |
33
-- | Open file streams with
44
-- | [__Node.FS.Stream__](https://pursuit.purescript.org/packages/purescript-node-fs/docs/Node.FS.Stream).
@@ -332,7 +332,9 @@ readN_ r canceller n = liftAff <<< makeAff $ \res -> do
332332
pure $ effectCanceler (canceller r)
333333

334334

335-
-- | Write to a stream. Will complete after the data is flushed to the stream.
335+
-- | Write to a stream.
336+
-- |
337+
-- | Will complete after the data is flushed to the stream.
336338
write
337339
:: forall m w
338340
. MonadAff m

0 commit comments

Comments
 (0)