Skip to content

Commit 0b165be

Browse files
committed
doc: fix line wrapping in buffer.markdown
Fix the line wrapping in buffer.markdown Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: nodejs/node-v0.x-archive#25591
1 parent 53b6a61 commit 0b165be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

doc/api/buffer.markdown

+3-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ It can be constructed in a variety of ways.
6464

6565
Allocates a new buffer of `size` octets. Note, `size` must be no more than
6666
[kMaxLength](smalloc.html#smalloc_smalloc_kmaxlength). Otherwise, a `RangeError`
67-
will be thrown here. Unlike `ArrayBuffers`, the underlying memory for buffers is not initialized. So the contents of a newly created `Buffer` is unknown. Use `buf.fill(0)`to initialize a buffer to zeroes.
67+
will be thrown here. Unlike `ArrayBuffers`, the underlying memory for buffers
68+
is not initialized. So the contents of a newly created `Buffer` is unknown.
69+
Use `buf.fill(0)`to initialize a buffer to zeroes.
6870

6971
### new Buffer(array)
7072

0 commit comments

Comments
 (0)