Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 1fda787

Browse files
Aliovflowdmanishprivet
authored
Fix grammatical mistake (#2642)
Co-authored-by: Claudio Wunder <cwunder@gnome.org> Co-authored-by: Manish Kumar ⛄ <manishprivet@protonmail.com>
1 parent b2a4330 commit 1fda787

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

content/learn/nodejs-streams.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ Due to their advantages, many Node.js core modules provide native stream handlin
106106

107107
There are four classes of streams:
108108

109-
* `Readable`: a stream which could be used for read data from it. In other words, its `readonly`.
110-
* `Writable`: a stream which could be used for write data to it. It is `writeonly`.
109+
* `Readable`: a stream which could be used to read data from it. In other words, its `readonly`.
110+
* `Writable`: a stream which could be used for writing data to it. It is `writeonly`.
111111
* `Duplex`: a stream which can read and write data, basically its a combination of a `Readable` and `Writable` stream.
112112
* `Transform`: a `Duplex` stream which reads data, transforms the data, and then writes the transformed data in the desired format.
113113

0 commit comments

Comments
 (0)