From 3f2932e9091611b37fac782364b0edd3a60ad870 Mon Sep 17 00:00:00 2001 From: Chris Pick Date: Wed, 6 Jun 2018 17:42:33 -0400 Subject: [PATCH] Improve wording in documentation (#83) Remove redundant wording form documentation. Port of https://github.com/tokio-rs/tokio-service/pull/30 --- tower-service/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tower-service/src/lib.rs b/tower-service/src/lib.rs index a5a10c2..85ce84e 100644 --- a/tower-service/src/lib.rs +++ b/tower-service/src/lib.rs @@ -86,7 +86,7 @@ use std::sync::Arc; /// it is possible to write middleware that provide these pieces in a /// reusable way. /// -/// For example, take timeouts as an example: +/// Take timeouts as an example: /// /// ```rust,ignore /// use tower_service::Service;