Skip to content

Commit b923296

Browse files
committed
Fix spelling mistakes
1 parent 6f5d95d commit b923296

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

doc/api/streams.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Emitted on error with the exception `exception`.
125125

126126
Emitted when the underlying file descriptor has been closed.
127127

128-
### stream.writeable
128+
### stream.writable
129129

130130
A boolean that is `true` by default, but turns `false` after an `'error'`
131131
occurred or `end()` / `destroy()` was called.

doc/api/util.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

4444
Experimental
4545

4646
Read 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
4848
paused until the `drain` event occurs on the `writableStream`. `callback` gets
4949
an error as its only argument and is called when `writableStream` is closed or
5050
when an error occurs.

0 commit comments

Comments
 (0)