aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Rinku Chaudhari <76877078+therealrinku@users.noreply.github.com> 2023-09-10 11:25:56 +0545
committerGravatar GitHub <noreply@github.com> 2023-09-09 22:40:56 -0700
commit682406c42ceee590c2b90900175f0eb1eaed5637 (patch)
tree0c0874a7ca8662316c95f2c8d7f0ca127909486a
parent6fe40f383af230ffade0a764bf25cbdb655db2af (diff)
downloadbun-682406c42ceee590c2b90900175f0eb1eaed5637.tar.gz
bun-682406c42ceee590c2b90900175f0eb1eaed5637.tar.zst
bun-682406c42ceee590c2b90900175f0eb1eaed5637.zip
docs: fix spelling (#4763)
-rw-r--r--docs/api/binary-data.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/binary-data.md b/docs/api/binary-data.md
index 77a54a762..2ce7c320f 100644
--- a/docs/api/binary-data.md
+++ b/docs/api/binary-data.md
@@ -90,7 +90,7 @@ console.log(dv.getUint8(1)); // => 2
console.log(dv.getUint8(2)); // => 1
```
-Attempting to write a value that requires more space than is available in the underlying `ArrayBuffer` will cuase an error. Below we attempt to write a `Float64` (which requires 8 bytes) at byte offset `0`, but there are only four total bytes in the buffer.
+Attempting to write a value that requires more space than is available in the underlying `ArrayBuffer` will cause an error. Below we attempt to write a `Float64` (which requires 8 bytes) at byte offset `0`, but there are only four total bytes in the buffer.
```ts
dv.setFloat64(0, 3.1415);