diff options
Diffstat (limited to 'docs/runtime')
-rw-r--r-- | docs/runtime/hot.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/runtime/hot.md b/docs/runtime/hot.md index bdd376011..36288de33 100644 --- a/docs/runtime/hot.md +++ b/docs/runtime/hot.md @@ -34,7 +34,7 @@ Bun provides the following simplified API for implementing HTTP servers. Refer t ```ts#server.ts globalThis.count = globalThis.count ?? 0; -globalThis.reloadCount++; +globalThis.count++; export default { fetch(req: Request) { |