From 7a0d236b4bf7b262be547f146067c98a6f99f3b8 Mon Sep 17 00:00:00 2001 From: Luca Palmieri Date: Fri, 28 Jan 2022 10:33:44 +0000 Subject: [PATCH] Fix intra-doc link. --- src/resource.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resource.rs b/src/resource.rs index d7002a7f9..3451eff45 100644 --- a/src/resource.rs +++ b/src/resource.rs @@ -316,7 +316,7 @@ where /// You can pass a [`Route`] as default_service. /// /// If no default service is specified, a `405 Method Not Allowed` response will be returned to the caller. - /// [`Resource`] does **not** inherit the default handler specified on the parent [`App`](crate::App) or [`Scope`](crate::web::Scope). + /// [`Resource`] does **not** inherit the default handler specified on the parent [`App`](crate::App) or [`Scope`](crate::Scope). pub fn default_service(mut self, f: F) -> Self where F: IntoServiceFactory,