From dc0069670d5d8a995c3f39b102e2d2b6ae2aa3be Mon Sep 17 00:00:00 2001 From: Martin Algesten Date: Sun, 21 Feb 2021 20:04:57 +0100 Subject: [PATCH] Update src/response.rs Co-authored-by: Jacob Hoffman-Andrews --- src/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/response.rs b/src/response.rs index c68a5e8..5ae3dfc 100644 --- a/src/response.rs +++ b/src/response.rs @@ -32,7 +32,7 @@ pub const DEFAULT_CHARACTER_SET: &str = "utf-8"; /// the response has unread bytes, the underlying socket cannot be reused, /// and the connection is closed. If there are no unread bytes, the connection /// is returned to the [`Agent`](crate::Agent) connection pool used (notice there is always -/// an agent present, also when not explicitly configured by the user). +/// an agent present, even when not explicitly configured by the user). /// /// ``` /// # fn main() -> Result<(), ureq::Error> {