doc: fix nonsensical grammar in Buffer::write
authorJimb Esser <wasteland@gmail.com>
Mon, 25 Jan 2016 20:45:02 +0000 (12:45 -0800)
committerMyles Borins <mborins@us.ibm.com>
Wed, 2 Mar 2016 22:01:11 +0000 (14:01 -0800)
PR-URL: https://github.com/nodejs/node/pull/4863
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
doc/api/buffer.markdown

index d64825f..8be347a 100644 (file)
@@ -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