From 5fa089b6b9dc0a2ed9cff64d0659b3faa07bc586 Mon Sep 17 00:00:00 2001 From: Christian Bourjau Date: Wed, 9 Jan 2019 23:19:30 +0100 Subject: [PATCH] Minor doc typo mistakes (#138) --- tower-service/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tower-service/src/lib.rs b/tower-service/src/lib.rs index 24b125e8..d73c0961 100644 --- a/tower-service/src/lib.rs +++ b/tower-service/src/lib.rs @@ -4,7 +4,7 @@ //! Definition of the core `Service` trait to Tower //! //! These traits provide the necessary abstractions for defining a request / -//! response clients and servers. They are simple but powerul and are the +//! response clients and servers. They are simple but powerul and are //! used as the foundation for the rest of Tower. //! //! * [`Service`](trait.Service.html) is the primary trait and defines the request @@ -148,7 +148,7 @@ use futures::{Future, Poll}; /// /// # Backpressure /// -/// Calling an at capacity `Service` (i.e., it temporarily unable to process a +/// Calling a `Service` which is at capacity (i.e., it is temporarily unable to process a /// request) should result in an error. The caller is responsible for ensuring /// that the service is ready to receive the request before calling it. ///