diff --git a/src/lib.rs b/src/lib.rs index 16f1c37..9d8bab9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -53,7 +53,7 @@ //! There are several ways you can set the body of a request. The basic one is //! by using the `body()` method of a [`RequestBuilder`][builder]. This lets you set the //! exact raw bytes of what the body should be. It accepts various types, -//! including `String`, `Vec`, and `File`. If you wish to pass a custom +//! including `String` and `Vec`. If you wish to pass a custom //! type, you can use the `reqwest::Body` constructors. //! //! ```rust