File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ Emitted on error with the exception `exception`.
125125
126126Emitted when the underlying file descriptor has been closed.
127127
128- ### stream.writeable
128+ ### stream.writable
129129
130130A boolean that is ` true ` by default, but turns ` false ` after an ` 'error' `
131131occurred or ` end() ` / ` destroy() ` was called.
Original file line number Diff line number Diff line change @@ -39,12 +39,12 @@ Example of inspecting all properties of the `util` object:
3939 console.log(util.inspect(util, true, null));
4040
4141
42- ### util.pump(readableStream, writeableStream , [ callback] )
42+ ### util.pump(readableStream, writableStream , [ callback] )
4343
4444Experimental
4545
4646Read the data from ` readableStream ` and send it to the ` writableStream ` .
47- When ` writeableStream .write(data)` returns ` false ` ` readableStream ` will be
47+ When ` writableStream .write(data)` returns ` false ` ` readableStream ` will be
4848paused until the ` drain ` event occurs on the ` writableStream ` . ` callback ` gets
4949an error as its only argument and is called when ` writableStream ` is closed or
5050when an error occurs.
You can’t perform that action at this time.
0 commit comments