summaryrefslogtreecommitdiff
path: root/doc/api/buffer.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/buffer.md')
-rw-r--r--doc/api/buffer.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index 46bba08ef1..2a254380f2 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -1363,11 +1363,11 @@ changes:
If `value` is:
- * a string, `value` is interpreted according to the character encoding in
- `encoding`.
- * a `Buffer` or [`Uint8Array`][], `value` will be used in its entirety.
- To compare a partial `Buffer`, use [`buf.slice()`][].
- * a number, `value` will be interpreted as an unsigned 8-bit integer
+* a string, `value` is interpreted according to the character encoding in
+ `encoding`.
+* a `Buffer` or [`Uint8Array`][], `value` will be used in its entirety.
+ To compare a partial `Buffer`, use [`buf.slice()`][].
+* a number, `value` will be interpreted as an unsigned 8-bit integer
value between `0` and `255`.
```js