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) {