From a367a82317a869a865c0ec9eccc362580a30ffc5 Mon Sep 17 00:00:00 2001 From: Michael Schubart Date: Sat, 30 Jul 2022 08:46:41 +0100 Subject: [PATCH] Fix mistake in API docs --- src/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/response.rs b/src/response.rs index afb51cd..984bc5b 100644 --- a/src/response.rs +++ b/src/response.rs @@ -375,7 +375,7 @@ impl Response { /// Content-Type header, or the Content-Type header does not specify a charset, into_string() /// uses `utf-8`. /// - /// I.e. `Content-Length: text/plain; charset=iso-8859-1` would be decoded in latin-1. + /// I.e. `Content-Type: text/plain; charset=iso-8859-1` would be decoded in latin-1. /// pub fn into_string(self) -> io::Result { #[cfg(feature = "charset")]