From fe693b7a4f6a971a9b960d5a8d7814245487695f Mon Sep 17 00:00:00 2001 From: chrisjohn404 Date: Thu, 17 Dec 2015 01:11:48 -0700 Subject: [PATCH] doc: Typo in buffer.markdown referencing buf.write() The buffer's write function is documented below the buf.toString function and all of the docs reference "buf" instead of "buffer". PR-URL: https://github.com/nodejs/node/pull/4324 Reviewed-By: James M Snell --- doc/api/buffer.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/buffer.markdown b/doc/api/buffer.markdown index afef2fc4978992..6fa7f7c9946965 100644 --- a/doc/api/buffer.markdown +++ b/doc/api/buffer.markdown @@ -598,7 +598,7 @@ defaults to `'utf8'`. The `start` and `end` parameters default to `0` and buf.toString('utf8',0,5); // outputs: abcde buf.toString(undefined,0,5); // encoding defaults to 'utf8', outputs abcde -See `buffer.write()` example, above. +See `buf.write()` example, below. ### buf.toJSON()