Skip to content

Commit 674416f

Browse files
committed
s/buffers/buffer/
1 parent b34feee commit 674416f

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

doc/api/_toc.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* [Process](process.html)
99
* [Utilities](util.html)
1010
* [Events](events.html)
11-
* [Buffers](buffers.html)
11+
* [Buffer](buffer.html)
1212
* [Streams](streams.html)
1313
* [Crypto](crypto.html)
1414
* [TLS/SSL](tls.html)

doc/api/all.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@include process
99
@include util
1010
@include events
11-
@include buffers
11+
@include buffer
1212
@include streams
1313
@include crypto
1414
@include tls
File renamed without changes.

doc/api/crypto.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,15 @@ Creates and returns a cipher object, with the given algorithm and password.
107107
On recent releases, `openssl list-cipher-algorithms` will display the
108108
available cipher algorithms.
109109
`password` is used to derive key and IV, which must be `'binary'` encoded
110-
string (See the [Buffers](buffers.html) for more information).
110+
string (See the [Buffer section](buffer.html) for more information).
111111

112112
## crypto.createCipheriv(algorithm, key, iv)
113113

114114
Creates and returns a cipher object, with the given algorithm, key and iv.
115115

116116
`algorithm` is the same as the `createCipher()`. `key` is a raw key used in
117117
algorithm. `iv` is an Initialization vector. `key` and `iv` must be `'binary'`
118-
encoded string (See the [Buffers](buffers.html) for more information).
118+
encoded string (See the [Buffer section](buffer.html) for more information).
119119

120120
## Class: Cipher
121121

doc/api/globals.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Used to print to stdout and stderr. See the [stdio](stdio.html) section.
3838

3939
* {Object}
4040

41-
Used to handle binary data. See the [buffers](buffers.html) section.
41+
Used to handle binary data. See the [buffer section](buffer.html).
4242

4343
## require()
4444

doc/api/http.markdown

+2-3
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ interface. This is an `EventEmitter` with the following events:
137137

138138
Emitted when a piece of the message body is received. The chunk is a string if
139139
an encoding has been set with `request.setEncoding()`, otherwise it's a
140-
[Buffer](buffers.html).
140+
[Buffer](buffer.html).
141141

142142
Note that the __data will be lost__ if there is no listener when a
143143
`ServerRequest` emits a `'data'` event.
@@ -673,8 +673,7 @@ server--in that case it is suggested to use the
673673
`['Transfer-Encoding', 'chunked']` header line when
674674
creating the request.
675675

676-
The `chunk` argument should be an array of integers
677-
or a string.
676+
The `chunk` argument should be a [buffer](buffer.html) or a string.
678677

679678
The `encoding` argument is optional and only applies when `chunk` is a string.
680679
Defaults to `'utf8'`.

0 commit comments

Comments
 (0)