Skip to content

Commit cc96359

Browse files
vahdetnschonni
authored andcommitted
Typo: steam -> stream
1 parent fcd339b commit cc96359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

locale/en/knowledge/advanced/streams/how-to-use-stream-pipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ layout: knowledge-post.hbs
1010

1111
If you've been using Node.js for a while, you've definitely run into streams. HTTP connections are streams, open files are streams; stdin, stdout, and stderr are all streams as well. A 'stream' is node's I/O abstraction - if you feel like you still need to understand them better, you can read more about them [here](https://nodejs.org/api/stream.html#stream_stream).
1212

13-
Streams make for quite a handy abstraction, and there's a lot you can do with them - as an example, let's take a look at `stream.pipe()`, the method used to take a readable stream and connect it to a writeable steam. Suppose we want to spawn a `node` child process and pipe our stdout and stdin to its corresponding stdout and stdin.
13+
Streams make for quite a handy abstraction, and there's a lot you can do with them - as an example, let's take a look at `stream.pipe()`, the method used to take a readable stream and connect it to a writeable stream. Suppose we want to spawn a `node` child process and pipe our stdout and stdin to its corresponding stdout and stdin.
1414

1515
```javascript
1616
#!/usr/bin/env node

0 commit comments

Comments
 (0)