Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/documentation/0052-nodejs-streams/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For example, in the traditional way, when you tell the program to read a file, t

Using streams you read it piece by piece, processing its content without keeping it all in memory.

The Node.js [`stream` module](https://nodejs.org/api/stream.html) provides the foundation upon which all streaming APIs are build.
The Node.js [`stream` module](https://nodejs.org/api/stream.html) provides the foundation upon which all streaming APIs are built.
All streams are instances of [EventEmitter](https://nodejs.org/api/events.html#events_class_eventemitter)

## Why streams
Expand Down