From b4cff71489d92372d21eea819390058e95fd41f8 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Wed, 8 Jul 2026 15:48:10 +0200 Subject: [PATCH] doc: update a Dispatcher undici doc link Signed-off-by: Filip Skokan --- doc/api/globals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/globals.md b/doc/api/globals.md index a70442f1bb91ec..73d34250ac06f6 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -571,7 +571,7 @@ in your Node.js process reading the `process.versions.undici` property. You can use a custom dispatcher to dispatch requests passing it in fetch's options object. The dispatcher must be compatible with `undici`'s -[`Dispatcher` class](https://undici.nodejs.org/#/docs/api/Dispatcher.md). +[`Dispatcher` class](https://undici.nodejs.org/api/Dispatcher). ```js fetch(url, { dispatcher: new MyAgent() });