From dbdcf12187ec4cdc2f9b4aa080328fb746a5afd0 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Tue, 16 Jan 2018 20:13:26 -0500 Subject: [PATCH] doc: correct buffer changelog ordering This commit reorders the function level changelogs of Buffer.prototype.fill() and Buffer.alloc() to reflect the order in which the entries were added. PR-URL: https://github.com/nodejs/node/pull/18129 Fixes: https://github.com/nodejs/node/issues/18128 Reviewed-By: Richard Lau Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Franziska Hinkelmann --- doc/api/buffer.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/doc/api/buffer.md b/doc/api/buffer.md index 767d7e2aa8a30c..5e72e3bd969b4f 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -511,18 +511,18 @@ console.log(buf2.toString()); * `size` {integer} The desired length of the new `Buffer`. @@ -1228,17 +1228,17 @@ console.log(buf1.equals(buf3)); * `value` {string|Buffer|integer} The value to fill `buf` with.