diff options
author | 2023-07-31 14:00:21 +0300 | |
---|---|---|
committer | 2023-07-31 04:00:21 -0700 | |
commit | de5890ff204e9c0f7ad6cd3fce3d1a8a9cad4bb5 (patch) | |
tree | 2009f856de30d7ef6ea9a75916d2f11715ad855d /docs | |
parent | aae92c76a695cb102e8a045d1aab6b9535546d7d (diff) | |
download | bun-de5890ff204e9c0f7ad6cd3fce3d1a8a9cad4bb5.tar.gz bun-de5890ff204e9c0f7ad6cd3fce3d1a8a9cad4bb5.tar.zst bun-de5890ff204e9c0f7ad6cd3fce3d1a8a9cad4bb5.zip |
Update arraybuffer-to-buffer.md (#3906)
Fix title. This page shows how to convert an ArrayBuffer to a Buffer, not a Uint8Array
Diffstat (limited to 'docs')
-rw-r--r-- | docs/guides/binary/arraybuffer-to-buffer.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guides/binary/arraybuffer-to-buffer.md b/docs/guides/binary/arraybuffer-to-buffer.md index 2737ebb4e..4aeb54e69 100644 --- a/docs/guides/binary/arraybuffer-to-buffer.md +++ b/docs/guides/binary/arraybuffer-to-buffer.md @@ -1,5 +1,5 @@ --- -name: Convert an ArrayBuffer to a Uint8Array +name: Convert an ArrayBuffer to a Buffer --- The Node.js [`Buffer`](https://nodejs.org/api/buffer.html) API predates the introduction of `ArrayBuffer` into the JavaScript language. Bun implements both. |