From 1a7ac0217e0e4215ae8d8ea1dd45064b9641f17a Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 31 Jan 2022 16:02:54 +0000 Subject: [PATCH] docs --- actix-http/src/service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/service.rs b/actix-http/src/service.rs index f650a848f..4fe573aa5 100644 --- a/actix-http/src/service.rs +++ b/actix-http/src/service.rs @@ -96,7 +96,7 @@ where { /// Sets service for `Expect: 100-Continue` handling. /// - /// AN expect service is called with the request that contains an `Expect` header. A successful + /// An expect service is called with requests that contain an `Expect` header. A successful /// response type is also a request which will be forwarded to the main service. pub fn expect(self, expect: X1) -> HttpService where