From 9b3f3c9bdf63d7775ac670793f7e84b1cebf5141 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Sat, 7 Aug 2021 23:37:07 +0200 Subject: [PATCH] Fix docs typo --- src/service/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/service/mod.rs b/src/service/mod.rs index d0bbeb90..7d55392d 100644 --- a/src/service/mod.rs +++ b/src/service/mod.rs @@ -480,13 +480,13 @@ where } } -/// Maker type used for [`HandleError`] to indicate that it should implement +/// Marker type used for [`HandleError`] to indicate that it should implement /// [`RoutingDsl`](crate::routing::RoutingDsl). #[non_exhaustive] #[derive(Debug)] pub struct HandleErrorFromRouter; -/// Maker type used for [`HandleError`] to indicate that it should _not_ implement +/// Marker type used for [`HandleError`] to indicate that it should _not_ implement /// [`RoutingDsl`](crate::routing::RoutingDsl). #[non_exhaustive] #[derive(Debug)]