diff options
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/file-io.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/file-io.md b/docs/api/file-io.md index 18bd5ad3a..713bee9b7 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 |