Navigation Menu

Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
doc: fix setEncoding()
Browse files Browse the repository at this point in the history
Fixes #3209.
  • Loading branch information
koichik committed May 5, 2012
1 parent 40c4bee commit 9f3c639
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
12 changes: 6 additions & 6 deletions doc/api/http.markdown
Expand Up @@ -258,9 +258,9 @@ Also `request.httpVersionMajor` is the first integer and

### request.setEncoding([encoding])

Set the encoding for the request body. Either `'utf8'` or `'binary'`. Defaults
to `null`, which means that the `'data'` event will emit a `Buffer` object..

Set the encoding for the request body. See
[stream.setEncoding()](stream.html#stream_stream_setencoding_encoding)
for more information.

### request.pause()

Expand Down Expand Up @@ -873,9 +873,9 @@ The response trailers object. Only populated after the 'end' event.

### response.setEncoding([encoding])

Set the encoding for the response body. Either `'utf8'`, `'ascii'`, or
`'base64'`. Defaults to `null`, which means that the `'data'` event will emit
a `Buffer` object.
Set the encoding for the response body. See
[stream.setEncoding()](stream.html#stream_stream_setencoding_encoding)
for more information.

### response.pause()

Expand Down
5 changes: 3 additions & 2 deletions doc/api/net.markdown
Expand Up @@ -292,8 +292,9 @@ Users who experience large or growing `bufferSize` should attempt to

### socket.setEncoding([encoding])

Sets the encoding (either `'ascii'`, `'utf8'`, or `'base64'`) for data that is
received. Defaults to `null`.
Set the encoding for the socket as a Readable Stream. See
[stream.setEncoding()](stream.html#stream_stream_setencoding_encoding)
for more information.

### socket.write(data, [encoding], [callback])

Expand Down
7 changes: 4 additions & 3 deletions doc/api/stream.markdown
Expand Up @@ -51,9 +51,10 @@ will emit this. (For example, an incoming HTTP request will not emit
A boolean that is `true` by default, but turns `false` after an `'error'`
occurred, the stream came to an `'end'`, or `destroy()` was called.

### stream.setEncoding(encoding)
Makes the data event emit a string instead of a `Buffer`. `encoding` can be
`'utf8'`, `'ascii'`, or `'base64'`.
### stream.setEncoding([encoding])

Makes the `'data'` event emit a string instead of a `Buffer`. `encoding` can be
`'utf8'`, `'utf16le'` (`'ucs2'`), `'ascii'`, or `'hex'`. Defaults to `'utf8'`.

### stream.pause()

Expand Down

0 comments on commit 9f3c639

Please sign in to comment.