aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGravatar xxxhussein <122984423+xxxhussein@users.noreply.github.com> 2023-07-31 14:00:21 +0300
committerGravatar GitHub <noreply@github.com> 2023-07-31 04:00:21 -0700
commitde5890ff204e9c0f7ad6cd3fce3d1a8a9cad4bb5 (patch)
tree2009f856de30d7ef6ea9a75916d2f11715ad855d /docs
parentaae92c76a695cb102e8a045d1aab6b9535546d7d (diff)
downloadbun-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.md2
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.