From 4c5afadfe39eaa57ec70a7ef2cc3987403b18876 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 4 Apr 2018 19:37:58 -0700 Subject: [PATCH] doc: improve prepositions in buffer.md * `at which to begin copying to` -> `at which to begin writing` * `at which to begin copying from` -> `from which to begin copying` * wrap at 80 chars --- doc/api/buffer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/buffer.md b/doc/api/buffer.md index eb3b93e0f0c3a8..a007301d2b50e3 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -1047,8 +1047,8 @@ added: v0.1.90 * `target` {Buffer|Uint8Array} A `Buffer` or [`Uint8Array`] to copy into. * `targetStart` {integer} The offset within `target` at which to begin - copying to. **Default:** `0`. -* `sourceStart` {integer} The offset within `buf` at which to begin copying from. + writing. **Default:** `0`. +* `sourceStart` {integer} The offset within `buf` from which to begin copying. **Default:** `0`. * `sourceEnd` {integer} The offset within `buf` at which to stop copying (not inclusive). **Default:** [`buf.length`].