aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-03-29 17:11:46 -0700
committerGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-03-29 17:12:06 -0700
commitb2f3dbfd43165d9f517b54b4de9395315234f643 (patch)
tree9a02249f76a38ac8d1ae4386cdb9fdc31c262b02
parent9f07073074e455fdda57cc82a335637565dc9a96 (diff)
downloadbun-b2f3dbfd43165d9f517b54b4de9395315234f643.tar.gz
bun-b2f3dbfd43165d9f517b54b4de9395315234f643.tar.zst
bun-b2f3dbfd43165d9f517b54b4de9395315234f643.zip
Typo
-rw-r--r--docs/runtime/hot.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/runtime/hot.md b/docs/runtime/hot.md
index 7e3fd3afc..0897ad55c 100644
--- a/docs/runtime/hot.md
+++ b/docs/runtime/hot.md
@@ -19,7 +19,7 @@ To run your tests in `--watch` mode:
$ bun test --watch
```
-In `--watch` mode, Bun keeps track of all imported files and watches them for changes. When a change is detected, Bun restarts the process, preserving the¸ same set of CLI arguments and environment variables used in the initial run. If Bun crashes, `--watch` will attempt to automatically restart the process.
+In `--watch` mode, Bun keeps track of all imported files and watches them for changes. When a change is detected, Bun restarts the process, preserving the same set of CLI arguments and environment variables used in the initial run. If Bun crashes, `--watch` will attempt to automatically restart the process.
{% callout %}