From 1068c00e552c0e5b6344ce7a4125637b7a223e83 Mon Sep 17 00:00:00 2001 From: Emi Tatsuo Date: Sat, 5 Dec 2020 11:37:14 -0500 Subject: [PATCH] Fix broken links in docs --- src/handling.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handling.rs b/src/handling.rs index 0ab3979..13128ac 100644 --- a/src/handling.rs +++ b/src/handling.rs @@ -103,7 +103,7 @@ where /// Any requests passed to the handler will be directly handed down to the handler, /// with the request as the first argument. The response provided will be sent to the /// requester. If the handler panics or returns an [`Err`], this will be logged, and - /// the requester will be sent a [`SERVER_ERROR`](Response::server_error()). + /// the requester will be sent a [`TEMPORARY FAILURE`](Response::temporary_failure()). fn from(handler: H) -> Self { Self::FnHandler( Box::new(move|req| Box::pin((handler)(req)) as HandlerResponse)