From: Jimb Esser Date: Mon, 25 Jan 2016 20:45:02 +0000 (-0800) Subject: doc: fix nonsensical grammar in Buffer::write X-Git-Tag: v4.4.0~77 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c05a5791efd3b381996460605b0fd4bf431d30a;p=platform%2Fupstream%2Fnodejs.git doc: fix nonsensical grammar in Buffer::write PR-URL: https://github.com/nodejs/node/pull/4863 Reviewed-By: Evan Lucas Reviewed-By: Colin Ihrig Reviewed-By: Roman Reiss --- diff --git a/doc/api/buffer.markdown b/doc/api/buffer.markdown index d64825f..8be347a 100644 --- a/doc/api/buffer.markdown +++ b/doc/api/buffer.markdown @@ -1008,7 +1008,7 @@ When undefined, `offset` defaults to `0`, and `encoding` defaults to `'utf8'`. The `length` parameter is the number of bytes to write, when undefined `length` defaults to `buffer.length - offset`. If the Buffer did not contain enough space to fit the entire string, only a partial amount of the string will be -written however, the will not write only partially encoded characters. The +written however, it will not write only partially encoded characters. The return value indicates the number of octets written. ```js