From e4ccf1335e94cd978cee72e7b6b82e06076c9ff7 Mon Sep 17 00:00:00 2001 From: JESS IZEN Date: Tue, 10 Dec 2024 19:25:16 +0000 Subject: [PATCH] fix type in comment --- tower/src/util/boxed/layer_clone_sync.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tower/src/util/boxed/layer_clone_sync.rs b/tower/src/util/boxed/layer_clone_sync.rs index 2356e337c..950e66be6 100644 --- a/tower/src/util/boxed/layer_clone_sync.rs +++ b/tower/src/util/boxed/layer_clone_sync.rs @@ -88,7 +88,7 @@ pub struct BoxCloneSyncServiceLayer { } impl BoxCloneSyncServiceLayer { - /// Create a new [`BoxCloneServiceLayer`]. + /// Create a new [`BoxCloneSyncServiceLayer`]. pub fn new(inner_layer: L) -> Self where L: Layer + Send + Sync + 'static,