diff --git a/src/async_impl/response.rs b/src/async_impl/response.rs index 09295af..340e541 100644 --- a/src/async_impl/response.rs +++ b/src/async_impl/response.rs @@ -127,7 +127,7 @@ impl Response { /// /// This method decodes the response body with BOM sniffing /// and with malformed sequences replaced with the REPLACEMENT CHARACTER. - /// Encoding is determinated from the `charset` parameter of `Content-Type` header, + /// Encoding is determined from the `charset` parameter of `Content-Type` header, /// and defaults to `utf-8` if not presented. /// /// # Example diff --git a/src/blocking/response.rs b/src/blocking/response.rs index 830c489..8d0e9b9 100644 --- a/src/blocking/response.rs +++ b/src/blocking/response.rs @@ -267,7 +267,7 @@ impl Response { /// /// This method decodes the response body with BOM sniffing /// and with malformed sequences replaced with the REPLACEMENT CHARACTER. - /// Encoding is determinated from the `charset` parameter of `Content-Type` header, + /// Encoding is determined from the `charset` parameter of `Content-Type` header, /// and defaults to `utf-8` if not presented. /// /// # Example diff --git a/src/wasm/body.rs b/src/wasm/body.rs index b485f8b..dc38ed8 100644 --- a/src/wasm/body.rs +++ b/src/wasm/body.rs @@ -75,7 +75,7 @@ impl Body { } } - /// into_part turns a regular body into the body of a mutlipart/form-data part. + /// into_part turns a regular body into the body of a multipart/form-data part. #[cfg(feature = "multipart")] pub(crate) fn into_part(self) -> Body { match self.inner {