From 4ae72c046ee72f631f15fcfa0bd483d21becf055 Mon Sep 17 00:00:00 2001 From: krzysdz Date: Mon, 22 Jun 2026 01:54:39 +0200 Subject: [PATCH] fix: broken links after #2389 --- src/content/docs/en/4x/guide/overriding-express-api.md | 2 +- src/content/docs/en/5x/guide/overriding-express-api.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/en/4x/guide/overriding-express-api.md b/src/content/docs/en/4x/guide/overriding-express-api.md index d9f96c4812..ef06cf056c 100644 --- a/src/content/docs/en/4x/guide/overriding-express-api.md +++ b/src/content/docs/en/4x/guide/overriding-express-api.md @@ -14,7 +14,7 @@ Altering the global prototypes will affect all loaded Express apps in the same p You can override the signature and behavior of existing methods with your own, by assigning a custom function. -Following is an example of overriding the behavior of [res.sendStatus](/api/response/#ressendstatusstatuscode). +Following is an example of overriding the behavior of [res.sendStatus](/api/response/#ressendstatus). ```js app.response.sendStatus = function (statusCode, type, message) { diff --git a/src/content/docs/en/5x/guide/overriding-express-api.md b/src/content/docs/en/5x/guide/overriding-express-api.md index d9f96c4812..ef06cf056c 100644 --- a/src/content/docs/en/5x/guide/overriding-express-api.md +++ b/src/content/docs/en/5x/guide/overriding-express-api.md @@ -14,7 +14,7 @@ Altering the global prototypes will affect all loaded Express apps in the same p You can override the signature and behavior of existing methods with your own, by assigning a custom function. -Following is an example of overriding the behavior of [res.sendStatus](/api/response/#ressendstatusstatuscode). +Following is an example of overriding the behavior of [res.sendStatus](/api/response/#ressendstatus). ```js app.response.sendStatus = function (statusCode, type, message) {