From 3d24b53fdf11734477bf199c9d5ffbe536ac87b4 Mon Sep 17 00:00:00 2001 From: Joe Kaufeld Date: Tue, 15 Oct 2024 15:06:33 -0400 Subject: [PATCH] :memo: fix broken docs link --- docs/middleware/custom_middleware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/middleware/custom_middleware.md b/docs/middleware/custom_middleware.md index 82ce0b9..26af02b 100644 --- a/docs/middleware/custom_middleware.md +++ b/docs/middleware/custom_middleware.md @@ -53,7 +53,7 @@ Unlike `process_request`, returning a value here doesn't change anything. We're ## on_error(self, request: Request, triggered_exception: Exception) -> Optional[HttpResponse]: -This is a helper function that is available for you to override; it's not often used by middleware, but there are some ([like the pydantic middleware](pydantic.md)) that call `on_error` when there is a validation failure. +This is a helper function that is available for you to override; it's not often used by middleware, but there are some ([like the pydantic middleware](middleware/pydantic.md)) that call `on_error` when there is a validation failure. ## post_process(self, request: Request, rendered_response: str) -> str: