summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2015-06-25 13:27:34 -0700
committerJames M Snell <jasnell@gmail.com>2015-08-03 20:44:39 -0700
commit0b165be37ba66de728b300b980dcf3d4243e5dc0 (patch)
tree91975470c008a04a1591de06c5e854e8060b8db6
parent53b6a615a5a0eab42b7ffd0baf3f2b5117f0229a (diff)
downloadnode-0b165be37ba66de728b300b980dcf3d4243e5dc0.tar.gz
doc: fix line wrapping in buffer.markdown
Fix the line wrapping in buffer.markdown Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/joyent/node/pull/25591
-rw-r--r--doc/api/buffer.markdown4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/api/buffer.markdown b/doc/api/buffer.markdown
index f9107f787..2bdbb0d40 100644
--- a/doc/api/buffer.markdown
+++ b/doc/api/buffer.markdown
@@ -64,7 +64,9 @@ It can be constructed in a variety of ways.
Allocates a new buffer of `size` octets. Note, `size` must be no more than
[kMaxLength](smalloc.html#smalloc_smalloc_kmaxlength). Otherwise, a `RangeError`
-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.
+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.
### new Buffer(array)