From bf4ea948346c59a5be03563425a7d9f04aadedf2 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Tue, 16 May 2023 21:34:51 +0200 Subject: [PATCH] docs: Fix duplicate words in README (#734) --- tower/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tower/README.md b/tower/README.md index c16e5c160..f5bc7d01e 100644 --- a/tower/README.md +++ b/tower/README.md @@ -44,7 +44,7 @@ middleware with [`Service`]s. If a [`Service`] can be thought of as an asynchronous function from a request type to a response type, a [`Layer`] is a function taking a [`Service`] of one type and returning a [`Service`] of a different type. The [`ServiceBuilder`] type is used to add middleware to a -service by composing it with multiple multiple [`Layer`]s. +service by composing it with multiple [`Layer`]s. ### The Tower Ecosystem @@ -95,7 +95,7 @@ Depending on your particular use case, you might use Tower in several ways: Additionally, when a network protocol requires functionality already provided by existing Tower middleware, a protocol implementation might use - Tower middleware internally, as well as as an integration point. + Tower middleware internally, as well as an integration point. ### Library Support