aboutsummaryrefslogtreecommitdiff
path: root/docs/api/binary-data.md
diff options
context:
space:
mode:
authorGravatar Samuel Rigaud <46346622+s-rigaud@users.noreply.github.com> 2023-09-12 21:50:05 -0400
committerGravatar GitHub <noreply@github.com> 2023-09-12 18:50:05 -0700
commit263382103f47ce6f7063ad07d34664718b4c1ea7 (patch)
tree20b7954f6f99de6e6472bd1e4a05df72e9e88ae7 /docs/api/binary-data.md
parent8777c3f72c8aa0dfef73a52c66887c0faaf41401 (diff)
downloadbun-263382103f47ce6f7063ad07d34664718b4c1ea7.tar.gz
bun-263382103f47ce6f7063ad07d34664718b4c1ea7.tar.zst
bun-263382103f47ce6f7063ad07d34664718b4c1ea7.zip
docs: fix typos (#5151)
Diffstat (limited to 'docs/api/binary-data.md')
-rw-r--r--docs/api/binary-data.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api/binary-data.md b/docs/api/binary-data.md
index a75d08309..a5fa40d9e 100644
--- a/docs/api/binary-data.md
+++ b/docs/api/binary-data.md
@@ -412,7 +412,7 @@ For complete documentation, refer to the [Node.js documentation](https://nodejs.
`Blob` is a Web API commonly used for representing files. `Blob` was initially implemented in browsers (unlike `ArrayBuffer` which is part of JavaScript itself), but it is now supported in Node and Bun.
-It isn't common to directly create `Blob` instances. More often, you'll recieve instances of `Blob` from an external source (like an `<input type="file">` element in the browser) or library. That said, it is possible to create a `Blob` from one or more string or binary "blob parts".
+It isn't common to directly create `Blob` instances. More often, you'll receive instances of `Blob` from an external source (like an `<input type="file">` element in the browser) or library. That said, it is possible to create a `Blob` from one or more string or binary "blob parts".
```ts
const blob = new Blob(["<html>Hello</html>"], {
@@ -507,7 +507,7 @@ for await (const chunk of stream) {
}
```
-For a more complete discusson of streams in Bun, see [API > Streams](/docs/api/streams).
+For a more complete discussion of streams in Bun, see [API > Streams](/docs/api/streams).
## Conversion