From d43f3b1c5fce554f0e0aae9e3db9881bb2f92a7a Mon Sep 17 00:00:00 2001 From: Nathan Date: Wed, 9 Oct 2019 08:38:34 -0400 Subject: [PATCH] Fix typo in response.rs body() comment Fixes https://github.com/actix/actix-web/issues/1125 --- actix-http/src/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/response.rs b/actix-http/src/response.rs index 5b0b3bc87..a1541b53e 100644 --- a/actix-http/src/response.rs +++ b/actix-http/src/response.rs @@ -194,7 +194,7 @@ impl Response { self.head.extensions.borrow_mut() } - /// Get body os this response + /// Get body of this response #[inline] pub fn body(&self) -> &ResponseBody { &self.body