Fix mistake in API docs

This commit is contained in:
Michael Schubart
2022-07-30 08:46:41 +01:00
committed by Martin Algesten
parent 134d82ecf4
commit a367a82317

View File

@@ -375,7 +375,7 @@ impl Response {
/// Content-Type header, or the Content-Type header does not specify a charset, into_string() /// Content-Type header, or the Content-Type header does not specify a charset, into_string()
/// uses `utf-8`. /// 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<String> { pub fn into_string(self) -> io::Result<String> {
#[cfg(feature = "charset")] #[cfg(feature = "charset")]