diff --git a/tower-retry/src/lib.rs b/tower-retry/src/lib.rs index 77f2b3c..6a326d6 100644 --- a/tower-retry/src/lib.rs +++ b/tower-retry/src/lib.rs @@ -29,7 +29,7 @@ pub struct Retry { // ===== impl Retry ===== impl Retry { - /// Retry the inner service depending on this [`Policy`][Policy}. + /// Retry the inner service depending on this `Policy`. pub fn new(policy: P, service: S) -> Self { Retry { policy, service } }