From eb3b5168ca849f2521efcd121c30b01e0c01c4fb Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Sat, 19 Jan 2019 20:45:06 +0200 Subject: [PATCH] doc: correct my wrong note about buf.fill() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/25585 Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen Reviewed-By: Сковорода Никита Андреевич --- doc/api/buffer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/buffer.md b/doc/api/buffer.md index 0fc31fe02a8180..8379e5b2187540 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -1237,7 +1237,7 @@ console.log(b.toString()); `value` is coerced to a `uint32` value if it is not a string, `Buffer`, or integer. If the resulting integer is greater than `255` (decimal), `buf` will be -filled with `0`. +filled with `value & 255`. If the final write of a `fill()` operation falls on a multi-byte character, then only the bytes of that character that fit into `buf` are written: