aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Brett Bloxom <38990705+BrettBlox@users.noreply.github.com> 2023-02-25 03:44:58 -0700
committerGravatar GitHub <noreply@github.com> 2023-02-25 02:44:58 -0800
commitae628253197cf9b5ff999faa71c242391e8e5765 (patch)
tree37f07866e0f61825a837f01498c8a8e45ff2fd22
parent1e6faa38151c2b6c5483dde6bbae5873e2a6558a (diff)
downloadbun-ae628253197cf9b5ff999faa71c242391e8e5765.tar.gz
bun-ae628253197cf9b5ff999faa71c242391e8e5765.tar.zst
bun-ae628253197cf9b5ff999faa71c242391e8e5765.zip
Docs: Fixes broken link in express docs (#2173)
Fixes broken internal link to nodejs compatability information.
-rw-r--r--docs/ecosystem/express.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ecosystem/express.md b/docs/ecosystem/express.md
index 94a0e1c93..856d2aafc 100644
--- a/docs/ecosystem/express.md
+++ b/docs/ecosystem/express.md
@@ -22,7 +22,7 @@ app.listen(port, () => {
Bun implements the [`node:http`](https://nodejs.org/api/http.html) and [`node:https`](https://nodejs.org/api/https.html) modules that these libraries rely on. These modules can also be used directly, though [`Bun.serve`](/docs/api/http) is recommended for most use cases.
{% callout %}
-**Note** — Refer to the [Runtime > Node.js APIs](/docs/runtime/nodejs#node_http) page for more detailed compatibility information.
+**Note** — Refer to the [Runtime > Node.js APIs](/docs/ecosystem/nodejs#node_http) page for more detailed compatibility information.
{% /callout %}
```ts