Minor docs fix (#277)

This commit is contained in:
Marcus Griep 2019-04-29 16:50:47 -04:00 committed by Carl Lerche
parent 8a646dd25c
commit 4d6d2c8572
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ pub struct Retry<P, S> {
// ===== impl Retry =====
impl<P, S> Retry<P, S> {
/// 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 }
}