aboutsummaryrefslogtreecommitdiff
path: root/docs/runtime/bunfig.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/runtime/bunfig.md')
-rw-r--r--docs/runtime/bunfig.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/runtime/bunfig.md b/docs/runtime/bunfig.md
index 52ffcec11..83f66b1b1 100644
--- a/docs/runtime/bunfig.md
+++ b/docs/runtime/bunfig.md
@@ -19,11 +19,11 @@ Bun's runtime behavior is configured using top-level fields in the `bunfig.toml`
### `preload`
-An array of scripts to execute before running a file or script. This is useful for registering plugins.
+An array of scripts/plugins to execute before running a file or script.
```toml
-# scripts to run before `bun run`ning a file or script
-# useful for registering plugins
+# scripts to run before `bun run`-ing a file or script
+# register plugins by adding them to this list
preload = ["./preload.ts"]
```