From 0a340d1920175252954f782549704cc17bd5a1a3 Mon Sep 17 00:00:00 2001 From: maor-benami <85426848+maor-benami@users.noreply.github.com> Date: Tue, 28 Feb 2023 07:07:35 +0200 Subject: [PATCH] Update file-io.md (#2229) duplicated word --- docs/api/file-io.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/file-io.md b/docs/api/file-io.md index 18bd5ad3a3..713bee9b77 100644 --- a/docs/api/file-io.md +++ b/docs/api/file-io.md @@ -8,7 +8,7 @@ Bun provides a set of optimized APIs for reading and writing files. `Bun.file(path): BunFile` -Create a `BunFile` instance with the `Bun.file(path)` function. A `BunFile` represents represents a lazily-loaded file; initializing it does not actually read the file from disk. +Create a `BunFile` instance with the `Bun.file(path)` function. A `BunFile` represents a lazily-loaded file; initializing it does not actually read the file from disk. ```ts const foo = Bun.file("foo.txt"); // relative to cwd