From 263382103f47ce6f7063ad07d34664718b4c1ea7 Mon Sep 17 00:00:00 2001 From: Samuel Rigaud <46346622+s-rigaud@users.noreply.github.com> Date: Tue, 12 Sep 2023 21:50:05 -0400 Subject: docs: fix typos (#5151) --- docs/api/binary-data.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/api/binary-data.md') 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 `` 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 `` 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(["Hello"], { @@ -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 -- cgit v1.2.3 From a6a474a83f64feff77273af18de526ce9e020808 Mon Sep 17 00:00:00 2001 From: Aaron Dewes Date: Wed, 11 Oct 2023 01:47:35 +0200 Subject: Add File to binary data TOC (#6025) --- docs/api/binary-data.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/api/binary-data.md') diff --git a/docs/api/binary-data.md b/docs/api/binary-data.md index a5fa40d9e..91b314b98 100644 --- a/docs/api/binary-data.md +++ b/docs/api/binary-data.md @@ -26,10 +26,10 @@ Below is a quick "cheat sheet" that doubles as a table of contents. Click an ite --- - +--- - [`BunFile`](#bunfile) - _Bun only_. A subclass of `Blob` that represents a lazily-loaded file on disk. Created with `Bun.file(path)`. -- cgit v1.2.3